aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2015-12-07 23:36:35 -0800
committerMark Otto <[email protected]>2015-12-07 23:36:35 -0800
commit9e872efb3fe68747cb50301ea290c3c0af699234 (patch)
treeaccc22214da09ced7a67e227b3cc0989917b2e28 /docs
parent886bbe9bc0f2299fb84bc37cc55c2686ca634035 (diff)
downloadbootstrap-9e872efb3fe68747cb50301ea290c3c0af699234.tar.xz
bootstrap-9e872efb3fe68747cb50301ea290c3c0af699234.zip
rip out the .blockquote-* children classes for margin utils
Diffstat (limited to 'docs')
-rw-r--r--docs/content/typography.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/content/typography.md b/docs/content/typography.md
index fec257e25..651e2c49c 100644
--- a/docs/content/typography.md
+++ b/docs/content/typography.md
@@ -147,11 +147,11 @@ Add `.initialism` to an abbreviation for a slightly smaller font-size.
## Blockquotes
-For quoting blocks of content from another source within your document. Wrap `<blockquote class="blockquote">` around any <abbr title="HyperText Markup Language">HTML</abbr> as the quote. For straight quotes, we recommend a `<p class="blockquote-text">` or list `<ul class="blockquote-list">` , `<ol class="blockquote-list">`.
+For quoting blocks of content from another source within your document. Wrap `<blockquote class="blockquote">` around any <abbr title="HyperText Markup Language">HTML</abbr> as the quote.
{% example html %}
<blockquote class="blockquote">
- <p class="blockquote-text">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
+ <p class="m-b-0">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
</blockquote>
{% endexample %}
@@ -161,7 +161,7 @@ Add a `<footer class="blockquote-footer">` for identifying the source. Wrap the
{% example html %}
<blockquote class="blockquote">
- <p class="blockquote-text">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
+ <p class="m-b-0">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
<footer class="blockquote-footer">Someone famous in <cite title="Source Title">Source Title</cite></footer>
</blockquote>
{% endexample %}
@@ -172,7 +172,7 @@ Add `.blockquote-reverse` for a blockquote with right-aligned content.
{% example html %}
<blockquote class="blockquote blockquote-reverse">
- <p class="blockquote-text">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
+ <p class="m-b-0">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
<footer class="blockquote-footer">Someone famous in <cite title="Source Title">Source Title</cite></footer>
</blockquote>
{% endexample %}