aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2015-08-12 18:47:15 -0700
committerMark Otto <[email protected]>2015-08-12 18:47:15 -0700
commitbbd62031f25bb0bfc3f0da121fd9f4e19df3d109 (patch)
treedb345b3ac5d1837a6ab15b5990cd018afa9abc3e
parent786b1682a5c30a00498cd017308aa2213f82b90a (diff)
downloadbootstrap-bbd62031f25bb0bfc3f0da121fd9f4e19df3d109.tar.xz
bootstrap-bbd62031f25bb0bfc3f0da121fd9f4e19df3d109.zip
fix blockquote docs
-rw-r--r--docs/content/typography.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/content/typography.md b/docs/content/typography.md
index 299edc570..2434a7328 100644
--- a/docs/content/typography.md
+++ b/docs/content/typography.md
@@ -179,7 +179,7 @@ For quoting blocks of content from another source within your document. Wrap `<b
Add a `<footer>` for identifying the source. Wrap the name of the source work in `<cite>`.
{% example html %}
-<blockquote>
+<blockquote class="blockquote">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
<footer>Someone famous in <cite title="Source Title">Source Title</cite></footer>
</blockquote>
@@ -190,7 +190,7 @@ Add a `<footer>` for identifying the source. Wrap the name of the source work in
Add `.blockquote-reverse` for a blockquote with right-aligned content.
{% example html %}
-<blockquote class="blockquote-reverse">
+<blockquote class="blockquote blockquote-reverse">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
<footer>Someone famous in <cite title="Source Title">Source Title</cite></footer>
</blockquote>