2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-05-27 14:46:01 +03:00

Improve clarity of documentation for .card-body (#23691)

This commit is contained in:
oxlay
2017-09-05 00:38:00 +02:00
committed by Mark Otto
parent bd8ab1070b
commit ce46946b92
+2 -2
View File
@@ -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 %}