Donec id elit non mi porta gravida at eget metus. Aenean eu leo quam.
<strong> </strong>
<em> </em>
<b> </b>
<i> </i>
<cite> </cite>
<small> </small>
<del> </del>
<abbr> </abbr>
<ins> </ins>
<dfn> </dfn>
<kbd> </kbd>
<samp> </samp>
“inline quotation”
<q> </q>
<sup> </sup>
<sub> </sub>
<var> </var>
<p class="lead">...</p>
Vivamus sagittis lacus vel augue laoreet rutrum faucibus.
<p>...</p>
Nullam quis risus eget urna mollis ornare vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nullam id dolor id nibh ultricies vehicula.
Default blockquotes are styled as such:
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante venenatis. Someone famous in Source Title
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante venenatis.
<blockquote> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p> <small>Someone famous in <cite title="Source Title">Source Title</cite></small> </blockquote>
Use class="pull-right" for a floated, right-aligned blockquote:
class="pull-right"
<blockquote class="pull-right"> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante venenatis.</p> <small>Someone famous in <cite title="Source Title">Source Title</cite></small> </blockquote>
<ul>
<ul class="list-unstyled">
<ol>
<dl>
<dl class="dl-horizontal">
For basic styling—light padding and only horizontal dividers—add the base class .table to any <table>.
.table
<table>
<table class="table"> … </table>
Adds zebra-striping to any table row within the <tbody> via the :nth-child CSS selector (not available in IE7-IE8).
<tbody>
:nth-child
<table class="table table-striped"> … </table>
Add borders and rounded corners to the table.
<table class="table table-bordered"> … </table>
Enable a hover state on table rows within a <tbody>.
<table class="table table-hover"> … </table>
Makes tables more compact by cutting cell padding in half.
<table class="table table-condensed"> … </table>
Use contextual classes to color table rows or individual cells.
.active
.success
.warning
.danger
Create responsive tables by wrapping any .table in .table-responsive to make them scroll horizontally up to small devices (under 768px). When viewing on anything larger than 768px wide, you will not see any difference in these tables.
.table-responsive
<div class="table-responsive"> <table class="table"> ... </table> </div>