aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authoroxlay <[email protected]>2017-09-05 00:38:00 +0200
committerMark Otto <[email protected]>2017-09-04 15:38:00 -0700
commitce46946b92f23d39fb8d68c7c1a20992643a908a (patch)
treec8916eae39220021fbb0cc1b1cc47cd30d235e9a /docs
parentbd8ab1070bb1a8e0f4afd17ceeb280ff056e2775 (diff)
downloadbootstrap-ce46946b92f23d39fb8d68c7c1a20992643a908a.tar.xz
bootstrap-ce46946b92f23d39fb8d68c7c1a20992643a908a.zip
Improve clarity of documentation for .card-body (#23691)
Diffstat (limited to 'docs')
-rw-r--r--docs/4.0/components/card.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/4.0/components/card.md b/docs/4.0/components/card.md
index d0d633d05..a833d931f 100644
--- a/docs/4.0/components/card.md
+++ b/docs/4.0/components/card.md
@@ -33,14 +33,14 @@ Below is an example of a basic card with mixed content and a fixed width. Cards
Cards support a wide variety of content, including images, text, list groups, links, and more. Below are examples of what's supported.
-### Blocks
+### Body
The building block of a card is the `.card-body`. Use it whenever you need a padded section within a card.
{% example html %}
<div class="card">
<div class="card-body">
- This is some text within a card block.
+ This is some text within a card body.
</div>
</div>
{% endexample %}