0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-17 09:52:29 +01:00

Add documentation about .font-weight-bolder/lighter (#27678)

This commit is contained in:
ysds 2018-11-18 17:15:49 +09:00 committed by XhmikosR
parent 3f422bfc88
commit 38ca58bf3c

View File

@ -85,8 +85,10 @@ Quickly change the weight (boldness) of text or italicize text.
{% capture example %}
<p class="font-weight-bold">Bold text.</p>
<p class="font-weight-bolder">Bolder weight text (relative to the parent element).</p>
<p class="font-weight-normal">Normal weight text.</p>
<p class="font-weight-light">Light weight text.</p>
<p class="font-weight-lighter">Lighter weight text (relative to the parent element).</p>
<p class="font-italic">Italic text.</p>
{% endcapture %}
{% include example.html content=example %}