]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Add documentation about .font-weight-bolder/lighter (#27678)
authorysds <fellows3@gmail.com>
Sun, 18 Nov 2018 08:15:49 +0000 (17:15 +0900)
committerXhmikosR <xhmikosr@gmail.com>
Sun, 18 Nov 2018 08:15:49 +0000 (10:15 +0200)
site/docs/4.1/utilities/text.md

index 6c5506a5ca512ec895ba4432c87890705a7753f6..673c62552c7a83a49571b1b6ca8ea298a54e7b73 100644 (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 %}