aboutsummaryrefslogtreecommitdiff
path: root/docs/components/card.md
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2016-10-09 15:04:32 -0700
committerMark Otto <[email protected]>2016-10-09 15:04:32 -0700
commit7dee5560a10785100996fb6affe644163b2db44e (patch)
treefc2e60e698bdc2421d7d17d604044bb700da57e6 /docs/components/card.md
parent1db3586dc0798485d5ca82a9b8de477e82ba351c (diff)
parent8d162553fa7fe499a72569d42debed18dfc5791b (diff)
downloadbootstrap-7dee5560a10785100996fb6affe644163b2db44e.tar.xz
bootstrap-7dee5560a10785100996fb6affe644163b2db44e.zip
Merge branch 'v4-dev' into v4-navbars
Diffstat (limited to 'docs/components/card.md')
-rw-r--r--docs/components/card.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/components/card.md b/docs/components/card.md
index 04f028189..be9846a30 100644
--- a/docs/components/card.md
+++ b/docs/components/card.md
@@ -142,7 +142,7 @@ Using custom widths:
## Text alignment
-You can quickly change the text alignment of any card—in its entirety or specific parts—with our [text align classes]({{ site.baseurl }}/components/utilities/#text-alignment).
+You can quickly change the text alignment of any card—in its entirety or specific parts—with our [text align classes]({{ site.baseurl }}/utilities/typography/#text-alignment).
{% example html %}
<div class="card card-block">
@@ -231,7 +231,7 @@ Use Bootstrap's nav pills or tabs within a card header. Be sure to always includ
{% example html %}
<div class="card text-xs-center">
<div class="card-header">
- <ul class="nav nav-tabs card-header-tabs pull-xs-left">
+ <ul class="nav nav-tabs card-header-tabs float-xs-left">
<li class="nav-item">
<a class="nav-link active" href="#">Active</a>
</li>
@@ -254,7 +254,7 @@ Use Bootstrap's nav pills or tabs within a card header. Be sure to always includ
{% example html %}
<div class="card text-xs-center">
<div class="card-header">
- <ul class="nav nav-pills card-header-pills pull-xs-left">
+ <ul class="nav nav-pills card-header-pills float-xs-left">
<li class="nav-item">
<a class="nav-link active" href="#">Active</a>
</li>
@@ -435,7 +435,7 @@ In need of a colored card, but not the hefty background colors they bring? Repla
## Groups
-Use card groups to render cards as a single, attached element with equal width and height columns. By default, card groups use `display: table;` and `table-layout: fixed;` to achieve their uniform sizing. However, enabling [flexbox mode]({{ site.baseurl }}/getting-started/flexbox) can switch that to use `display: flex;` and provide the same effect.
+Use card groups to render cards as a single, attached element with equal width and height columns. By default, card groups use `display: table;` and `table-layout: fixed;` to achieve their uniform sizing. However, enabling [flexbox mode]({{ site.baseurl }}/getting-started/flexbox/) can switch that to use `display: flex;` and provide the same effect.
Only applies to small devices and above.