diff options
| author | Mark Otto <[email protected]> | 2017-03-18 16:30:12 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2017-03-18 16:30:12 -0700 |
| commit | ec8c2519285a1c88d224739dc2f4b18b997a1e8b (patch) | |
| tree | 0a3a9e8b5bd13fc347ce652d597cc8dfe1e260f6 /docs/components | |
| parent | f61fb70eb102608f2b6653c604cb4fed71588d60 (diff) | |
| download | bootstrap-ec8c2519285a1c88d224739dc2f4b18b997a1e8b.tar.xz bootstrap-ec8c2519285a1c88d224739dc2f4b18b997a1e8b.zip | |
fixes #21584
- revert back to display block for list items to prevent unwanted behaviors
- fixes a handful of other linked issues (see main thread)
- updates docs to include more utilities for the one example
Diffstat (limited to 'docs/components')
| -rw-r--r-- | docs/components/list-group.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/components/list-group.md b/docs/components/list-group.md index 4316516ae..f3b5b7c89 100644 --- a/docs/components/list-group.md +++ b/docs/components/list-group.md @@ -116,19 +116,19 @@ Contextual classes also work with `.list-group-item-action`. Note the addition o ## With badges -Add badges to any list group item to show unread counts, activity, and more with the help of some utilities. Note the [`justify-content-between` utility class]({{ site.baseurl }}/layout/grid/#horizontal-alignment) and the badge's placement. +Add badges to any list group item to show unread counts, activity, and more with the help of some [utilities]({{ site.baseurl }}/utilities/flexbox/). {% example html %} <ul class="list-group"> - <li class="list-group-item justify-content-between"> + <li class="list-group-item d-flex justify-content-between align-items-center"> Cras justo odio <span class="badge badge-default badge-pill">14</span> </li> - <li class="list-group-item justify-content-between"> + <li class="list-group-item d-flex justify-content-between align-items-center"> Dapibus ac facilisis in <span class="badge badge-default badge-pill">2</span> </li> - <li class="list-group-item justify-content-between"> + <li class="list-group-item d-flex justify-content-between align-items-center"> Morbi leo risus <span class="badge badge-default badge-pill">1</span> </li> |
