aboutsummaryrefslogtreecommitdiff
path: root/docs/components
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2015-12-07 09:25:28 -0800
committerMark Otto <[email protected]>2015-12-07 09:25:28 -0800
commitef5b6a224eb5d2f093f9a613cad26a68487d46d7 (patch)
treed4b3a30abe26d89f7ef4ce7d00a5c35133f48a46 /docs/components
parenta78b835143eb0b5c302a9ff4eccc99b302bbb598 (diff)
parent2f176821c3c5439f83a5df4a176534d724e716b9 (diff)
downloadbootstrap-ef5b6a224eb5d2f093f9a613cad26a68487d46d7.tar.xz
bootstrap-ef5b6a224eb5d2f093f9a613cad26a68487d46d7.zip
Merge branch 'v4-dev' of https://github.com/twbs/bootstrap into v4-dev
Diffstat (limited to 'docs/components')
-rw-r--r--docs/components/utilities.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/components/utilities.md b/docs/components/utilities.md
index c73db767f..940219263 100644
--- a/docs/components/utilities.md
+++ b/docs/components/utilities.md
@@ -121,13 +121,13 @@ Transform text in components with text capitalization classes.
<p class="text-capitalize">CapiTaliZed text.</p>
{% endexample %}
-## Font weight and style
+## Font weight and italics
-Quickly change the weight and style of text.
+Quickly change the weight (boldness) of text or italicize text.
{% example html %}
-<p class="font-normal">Normal text.</p>
-<p class="font-bold">Bold text.</p>
+<p class="font-weight-bold">Bold text.</p>
+<p class="font-weight-normal">Normal weight text.</p>
<p class="font-italic">Italicized text.</p>
{% endexample %}