Referenční příručka pomocných tříd CSS pro bootstrap


Text

Přidejte význam pomocí barev textu pomocí tříd níže. Odkazy při najetí myší ztmavnou:

Class Description Example
.text-muted Text styled with class "text-muted"
.text-primary Text styled with class "text-primary"
.text-success Text styled with class "text-success"
.text-info Text styled with class "text-info"
.text-warning Text styled with class "text-warning"
.text-danger Text styled with class "text-danger"

Pozadí

Přidejte význam pomocí barev pozadí pomocí tříd níže. Odkazy po najetí myší ztmavnou stejně jako textové třídy:

Class Description Example
.bg-primary Table cell is styled with class "bg-primary"
.bg-success Table cell is styled with class "bg-success"
.bg-info Table cell is styled with class "bg-info"
.bg-warning Table cell is styled with class "bg-warning"
.bg-danger Table cell is styled with class "bg-danger"

jiný

Class Description Example
.pull-left Floats an element to the left
.pull-right Floats an element to the right
.center-block Sets an element to display:block with margin-right:auto and margin-left:auto
.clearfix Clears floats
.show Forces an element to be shown (display:block)
.hidden Forces an element to be hidden (display:none)
.invisible Forces an element to be invisible (visibility:hidden). Will take up space on page even though it is invisible
.sr-only Hides an element to all devices except screen readers
.sr-only-focusable Combine with .sr-only to show the element again when it is focused (e.g. by a keyboard-only user)
.text-hide Helps replace an element's text content with a background image
.close Indicates a close icon
.caret Indicates dropdown functionality (will reverse automatically in dropup menus)


Responzivní nástroje

Tyto třídy se používají k zobrazení a/nebo skrytí obsahu podle zařízení prostřednictvím mediálních dotazů.

Použijte jednu z dostupných tříd nebo jejich kombinaci pro přepínání obsahu mezi body přerušení zobrazení:

Třídy Extra malá zařízení Telefony (<768px) Malá zařízení Tablety (≥768px) Střední zařízení Stolní počítače (≥992 px) Velká zařízení Stolní počítače (≥1200px)
.visible-xs-* Viditelné Skrytý Skrytý Skrytý
.visible-sm-* Skrytý Viditelné Skrytý Skrytý
.visible-md-* Skrytý Skrytý Viditelné Skrytý
.visible-lg-* Skrytý Skrytý Skrytý Viditelné
.hidden-xs Skrytý Viditelné Viditelné Viditelné
.skrytý-sm Viditelné Skrytý Viditelné Viditelné
.hidden-md Viditelné Viditelné Skrytý Viditelné
.hidden-lg Viditelné Viditelné Viditelné Skrytý

Skrytý

Skrýt prvky v závislosti na velikosti obrazovky:

Příklad

<h2>Example</h2>
<p>Resize this page to see how the text below changes:</p>
<h1 class="hidden-xs bg-danger">This text is hidden on an EXTRA SMALL screen.</h1>
<h1 class="hidden-sm bg-info">This text is hidden on a SMALL screen.</h1>
<h1 class="hidden-md bg-warning">This is text hidden on a MEDIUM screen.</h1>
<h1 class="hidden-lg bg-success">This is text hidden on a LARGE screen.</h1>

Výsledek:

Example

Resize this page to see how the text below changes:

This text is hidden on an EXTRA SMALL screen.

This text is hidden on a SMALL screen.

This is text hidden on a MEDIUM screen.

This is text hidden on a LARGE screen.



Od verze 3.2.0 se .visible-*-*třídy pro dodávají ve třech variantách, jedna pro každou display hodnotu vlastnosti CSS:

Skupina tříd CSS zobrazení
viditelný-*-blok displej: blok;
.viditelný-*-inline zobrazení: inline;
.viditelný-*-inline-blok displej: inline-block;

Např. pro malé ( sm) obrazovky jsou dostupné .visible-*-*třídy: .visible-sm-block, .visible-sm-inline, a .visible-sm-inline-block.

Třídy .visible-xs, .visible-sm, .visible-mda .visible-lgjsou od verze 3.2.0 zastaralé .

Příklad

<h2>Example</h2>
<p>Resize this page to see how the text below changes:</p>
<h1 class="visible-xs">This text is shown only on an EXTRA SMALL screen.</h1>
<h1 class="visible-sm">This text is shown only on a SMALL screen.</h1>
<h1 class="visible-md">This text is shown only on a MEDIUM screen.</h1>
<h1 class="visible-lg">This text is shown only on a LARGE screen.</h1>

Výsledek:

Example

Resize this page to see how the text below changes:

This text is shown only on an EXTRA SMALL screen.

This text is shown only on a SMALL screen.

This text is shown only on a MEDIUM screen.

This text is shown only on a LARGE screen.