Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorysds <fellows3@gmail.com>2018-11-18 11:15:49 +0300
committerXhmikosR <xhmikosr@gmail.com>2018-11-18 11:15:49 +0300
commit38ca58bf3c886d99e75e307dd6f631a2c9e2c7a2 (patch)
tree95b25c86d99b0cc74d49093b24344dd888fbf7aa
parent3f422bfc888b8129c2ea96419d4480290041f520 (diff)
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 6c5506a5ca..673c62552c 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 %}