Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/site
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2019-02-07 12:34:11 +0300
committerXhmikosR <xhmikosr@gmail.com>2019-02-07 12:53:47 +0300
commitf663a868100d2e888bfa37d77f8fb287afce509b (patch)
tree9949a8deb946a23618195a97d0a0c101eb7b8c9c /site
parent30ddcafb2d51c96385273efd1f6b653196728cb1 (diff)
approach.md: Remove stray comma.
Diffstat (limited to 'site')
-rw-r--r--site/docs/4.2/extend/approach.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/site/docs/4.2/extend/approach.md b/site/docs/4.2/extend/approach.md
index c6730b61e9..07058e2a8f 100644
--- a/site/docs/4.2/extend/approach.md
+++ b/site/docs/4.2/extend/approach.md
@@ -45,7 +45,7 @@ There are two `z-index` scales in Bootstrap—elements within a component and ov
- Some components in Bootstrap are built with overlapping elements to prevent double borders without modifying the `border` property. For example, button groups, input groups, and pagination.
- These components share a standard `z-index` scale of `0` through `3`.
-- `0` is default (initial), `1` is `:hover`, `2` is `:active`/`.active`, and , `3` is `:focus`.
+- `0` is default (initial), `1` is `:hover`, `2` is `:active`/`.active`, and `3` is `:focus`.
- This approach matches our expectations of highest user priority. If an element is focused, it's in view and at the user's attention. Active elements are second highest because they indicate state. Hover is third highest because it indicates user intent, but nearly _anything_ can be hovered.
### Overlay components