All HTML headings, through
, are available.
.h1
through .h6
classes are also available, for when you want to match the font styling of a heading but still want your text to be displayed inline.
h1. Bootstrap heading
h2. Bootstrap heading
h3. Bootstrap heading
h4. Bootstrap heading
h5. Bootstrap heading
h6. Bootstrap heading
Create lighter, secondary text in any heading with a generic tag or the
.small
class.
h1. Bootstrap heading Secondary text
h2. Bootstrap heading Secondary text
h3. Bootstrap heading Secondary text
h4. Bootstrap heading Secondary text
h5. Bootstrap heading Secondary text
h6. Bootstrap heading Secondary text
Bootstrap's global default font-size
is 14px, with a line-height
of 1.428. This is applied to the and all paragraphs. In addition,
(paragraphs) receive a bottom margin of half their computed line-height (10px by default).
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.
Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec ullamcorper nulla non metus auctor fringilla. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Donec ullamcorper nulla non metus auctor fringilla.
Maecenas sed diam eget risus varius blandit sit amet non magna. Donec id elit non mi porta gravida at eget metus. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit.
...
Make a paragraph stand out by adding .lead
.
Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Duis mollis, est non commodo luctus.
class="lead">...
The typographic scale is based on two Less variables in variables.less: @font-size-base
and @line-height-base
. The first is the base font-size used throughout and the second is the base line-height. We use those variables and some simple math to create the margins, paddings, and line-heights of all our type and more. Customize them and Bootstrap adapts.
For highlighting a run of text due to its relevance in another context, use the tag.
You can use the mark tag to highlight text.
You can use the mark tag to highlight text.
For indicating blocks of text that have been deleted use the
tag.
This line of text is meant to be treated as deleted text.
This line of text is meant to be treated as deleted text.
For indicating blocks of text that are no longer relevant use the
tag.
This line of text is meant to be treated as no longer accurate.
This line of text is meant to be treated as no longer accurate.
For indicating additions to the document use the tag.
This line of text is meant to be treated as an addition to the document.
To underline text use the tag.
This line of text will render as underlined
This line of text will render as underlined
Make use of HTML's default emphasis tags with lightweight styles.
For de-emphasizing inline or blocks of text, use the tag to set text at 85% the size of the parent. Heading elements receive their own
font-size
for nested elements.
You may alternatively use an inline element with .small
in place of any .
This line of text is meant to be treated as fine print.
This line of text is meant to be treated as fine print.
For emphasizing a snippet of text with a heavier font-weight.
The following snippet of text is rendered as bold text.
rendered as bold text
For emphasizing a snippet of text with italics.
The following snippet of text is rendered as italicized text.
rendered as italicized text
Feel free to use and
in HTML5.
is meant to highlight words or phrases without conveying additional importance while
is mostly for voice, technical terms, etc.
Easily realign text to components with text alignment classes.
Left aligned text.
Center aligned text.
Right aligned text.
Justified text.
No wrap text.
class="text-left">Left aligned text.
class="text-center">Center aligned text.
class="text-right">Right aligned text.
class="text-justify">Justified text.
class="text-nowrap">No wrap text.
Transform text in components with text capitalization classes.
Lowercased text.
Uppercased text.
Capitalized text.
class="text-lowercase">Lowercased text.
class="text-uppercase">Uppercased text.
class="text-capitalize">Capitalized text.
Stylized implementation of HTML's element for abbreviations and acronyms to show the expanded version on hover. Abbreviations with a
title
attribute have a light dotted bottom border and a help cursor on hover, providing additional context on hover and to users of assistive technologies.
An abbreviation of the word attribute is attr.
title="attribute">attr
Add .initialism
to an abbreviation for a slightly smaller font-size.
HTML is the best thing since sliced bread.
title="HyperText Markup Language" class="initialism">HTML
Present contact information for the nearest ancestor or the entire body of work. Preserve formatting by ending all lines with
.
Twitter, Inc.
795 Folsom Ave, Suite 600
San Francisco, CA 94107
title="Phone">P:
Full Name
href="mailto:#">
For quoting blocks of content from another source within your document.
Wrap around any HTML as the quote. For straight quotes, we recommend a
.
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.
Style and content changes for simple variations on a standard .
Add a for identifying the source. Wrap the name of the source work in
.
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.
Someone famous in title="Source Title">Source Title
Add .blockquote-reverse
for a blockquote with right-aligned content.
class="blockquote-reverse">
...
A list of items in which the order does not explicitly matter.
...
A list of items in which the order does explicitly matter.
...
Remove the default list-style
and left margin on list items (immediate children only). This only applies to immediate children list items, meaning you will need to add the class for any nested lists as well.
class="list-unstyled">
...
Place all list items on a single line with display: inline-block;
and some light padding.
class="list-inline">
...
A list of terms with their associated descriptions.
...
...
Make terms and descriptions in
line up side-by-side. Starts off stacked like default
s, but when the navbar expands, so do these.
class="dl-horizontal">
...
...