Iwwersiicht
Komponenten an Optiounen fir Äre Bootstrap-Projet auszeleeën, inklusiv Wrapbehälter, e mächtege Gittersystem, e flexibelen Medienobjekt a reaktiounsfäeger Utilityklassen.
Container
Container sinn dat meescht Basis Layout Element am Bootstrap a si erfuerderlech wann Dir eise Standard Gitter System benotzt . Container gi benotzt fir den Inhalt an hinnen ze enthalen, ze paddelen an (heiansdo) ze zentréieren. Wärend Container nestéiert kënne ginn, erfuerderen déi meescht Layouten keen nestéierte Container.
Bootstrap kënnt mat dräi verschiddene Container:
.container
, déi emax-width
bei all reaktiounsfäeger Breakpoint setzt.container-fluid
, déiwidth: 100%
op all breakpoints ass.container-{breakpoint}
, watwidth: 100%
bis zum spezifizéierte Breakpunkt ass
D'Tabell hei ënnen illustréiert wéi all Container max-width
mat dem Original .container
an .container-fluid
iwwer all Breakpunkt vergläicht.
Kuckt se an Aktioun a vergläicht se an eisem Grid Beispill .
Extra kleng <576px |
Kleng ≥576px |
Mëttelméisseg ≥768px |
Grouss ≥992px |
Extra grouss ≥1200px |
|
---|---|---|---|---|---|
.container |
100% | 540px | 720px | 9 60px | 1140px |
.container-sm |
100% | 540px | 720px | 9 60px | 1140px |
.container-md |
100% | 100% | 720px | 9 60px | 1140px |
.container-lg |
100% | 100% | 100% | 9 60px | 1140px |
.container-xl |
100% | 100% | 100% | 100% | 1140px |
.container-fluid |
100% | 100% | 100% | 100% | 100% |
Alles an engem
Eis Standardklass .container
ass e reaktiounsfäeger, fixer Breet Container, dat heescht seng max-width
Ännerungen op all Breakpoint.
Flëssegkeet
Benotzt .container-fluid
fir eng voll Breet Container, Spannung der ganzer Breet vun der viewport.
Reaktiounsfäeger
Responsive Container sinn nei am Bootstrap v4.4. Si erlaben Iech eng Klass ze spezifizéieren déi 100% breet ass bis de spezifizéierte Breakpunkt erreecht ass, duerno gëlle mir max-width
s fir jiddereng vun den héije Breakpunkter. Zum Beispill .container-sm
ass 100% breet fir unzefänken bis de sm
Breakpunkt erreecht gëtt, wou et mat md
, lg
, an xl
.
Reaktiounsfäeger Breakpoints
Zënter Bootstrap ass entwéckelt fir als éischt mobil ze sinn, benotze mir eng Handvoll Medienufroen fir sënnvoll Breakpunkte fir eis Layouten an Interfaces ze kreéieren. Dës Breakpunkte baséieren meeschtens op Minimum Viewport Breeten an erlaben eis Elementer opzebauen wéi de Viewport ännert.
Bootstrap benotzt haaptsächlech déi folgend Medien Query Rangen - oder Breakpoints - an eise Quell Sass Dateien fir eise Layout, Gittersystem a Komponenten.
Well mir eis Quell-CSS zu Sass schreiwen, sinn all eis Medienufroen iwwer Sass Mixins verfügbar:
Mir benotzen heiansdo Medienufroen déi an déi aner Richtung goen (déi gegebene Bildschirmgréisst oder méi kleng ):
Bedenkt datt well Browser de Moment keng Range Kontext Ufroen ënnerstëtzen , schaffe mir ronderëm d'Limitatiounen vun min-
a max-
Präfixe a Viewporte mat Fraktiounsbreeten (wat ënner bestëmmte Bedéngungen op High-dpi Apparater zum Beispill optriede kann) andeems mir Wäerter mat méi héijer Präzisioun fir dës Vergläicher benotzen .
Nach eng Kéier sinn dës Medienufroen och iwwer Sass Mixins verfügbar:
There are also media queries and mixins for targeting a single segment of screen sizes using the minimum and maximum breakpoint widths.
These media queries are also available via Sass mixins:
Similarly, media queries may span multiple breakpoint widths:
The Sass mixin for targeting the same screen size range would be:
Z-index
Several Bootstrap components utilize z-index
, the CSS property that helps control layout by providing a third axis to arrange content. We utilize a default z-index scale in Bootstrap that’s been designed to properly layer navigation, tooltips and popovers, modals, and more.
These higher values start at an arbitrary number, high and specific enough to ideally avoid conflicts. We need a standard set of these across our layered components—tooltips, popovers, navbars, dropdowns, modals—so we can be reasonably consistent in the behaviors. There’s no reason we couldn’t have used 100
+ or 500
+.
We don’t encourage customization of these individual values; should you change one, you likely need to change them all.
To handle overlapping borders within components (e.g., buttons and inputs in input groups), we use low single digit z-index
values of 1
, 2
, and 3
for default, hover, and active states. On hover/focus/active, we bring a particular element to the forefront with a higher z-index
value to show their border over the sibling elements.