aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorysds <[email protected]>2018-11-18 17:15:49 +0900
committerXhmikosR <[email protected]>2018-11-18 10:15:49 +0200
commit38ca58bf3c886d99e75e307dd6f631a2c9e2c7a2 (patch)
tree95b25c86d99b0cc74d49093b24344dd888fbf7aa
parent3f422bfc888b8129c2ea96419d4480290041f520 (diff)
downloadbootstrap-38ca58bf3c886d99e75e307dd6f631a2c9e2c7a2.tar.xz
bootstrap-38ca58bf3c886d99e75e307dd6f631a2c9e2c7a2.zip
Add documentation about .font-weight-bolder/lighter (#27678)
-rw-r--r--site/docs/4.1/utilities/text.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/site/docs/4.1/utilities/text.md b/site/docs/4.1/utilities/text.md
index 6c5506a5c..673c62552 100644
--- a/site/docs/4.1/utilities/text.md
+++ b/site/docs/4.1/utilities/text.md
@@ -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 %}