Gozgalmaýan emläk görkeziň
Ekranyň kömekçi enjamlary bilen komponentleriň displeý bahasyny we has çalt çalşyň. Has giňden ýaýran gymmatlyklaryň käbirini, şeýle hem çap edilende ekrany dolandyrmak üçin käbir goşmaçalary öz içine alýar.
Bu nähili işleýär
Duýgur displeý peýdaly synplarymyz bilen display
emlägiň bahasyny üýtgediň . Bilgeşleýin ähli mümkin bolan gymmatlyklaryň diňe bir bölegini goldaýarys display
. Sapaklar zerur bolanda dürli effektler üçin birleşdirilip bilner.
Bellik
Breakhli nokatlara degişli peýdaly synplary görkeziň , olardan xs
başlap xxl
, nokatlaryň gysgaldylyşy ýok. Sebäbi bu synplar min-width: 0;
ýokary we ýokary derejede ulanylýar we şeýlelik bilen media soragy bilen baglanyşykly däl. Galan bölekler bolsa, nokat gysgaltmasyny öz içine alýar.
Şeýle bolansoň, synplar formaty ulanyp atlandyrylýar:
.d-{value}
üçinxs
.d-{breakpoint}-{value}
üçinsm
,,, we .md
_lg
_xl
xxl
Gymmatlyklaryň biri :
none
inline
inline-block
block
grid
table
table-cell
table-row
flex
inline-flex
The display values can be altered by changing the $displays
variable and recompiling the SCSS.
The media queries affect screen widths with the given breakpoint or larger. For example, .d-lg-none
sets display: none;
on lg
, xl
, and xxl
screens.
Examples
<div class="d-inline p-2 bg-primary text-white">d-inline</div>
<div class="d-inline p-2 bg-dark text-white">d-inline</div>
<span class="d-block p-2 bg-primary text-white">d-block</span>
<span class="d-block p-2 bg-dark text-white">d-block</span>
Hiding elements
For faster mobile-friendly development, use responsive display classes for showing and hiding elements by device. Avoid creating entirely different versions of the same site, instead hide elements responsively for each screen size.
To hide elements simply use the .d-none
class or one of the .d-{sm,md,lg,xl,xxl}-none
classes for any responsive screen variation.
To show an element only on a given interval of screen sizes you can combine one .d-*-none
class with a .d-*-*
class, for example .d-none .d-md-block .d-xl-none .d-xxl-none
will hide the element for all screen sizes except on medium and large devices.
Screen size | Class |
---|---|
Hidden on all | .d-none |
Hidden only on xs | .d-none .d-sm-block |
Hidden only on sm | .d-sm-none .d-md-block |
Hidden only on md | .d-md-none .d-lg-block |
Hidden only on lg | .d-lg-none .d-xl-block |
Hidden only on xl | .d-xl-none .d-xxl-block |
Hidden only on xxl | .d-xxl-none |
Visible on all | .d-block |
Visible only on xs | .d-block .d-sm-none |
Visible only on sm | .d-none .d-sm-block .d-md-none |
Visible only on md | .d-none .d-md-block .d-lg-none |
Visible only on lg | .d-none .d-lg-block .d-xl-none |
Visible only on xl | .d-none .d-xl-block .d-xxl-none |
Visible only on xxl | .d-none .d-xxl-block |
<div class="d-lg-none">hide on lg and wider screens</div>
<div class="d-none d-lg-block">hide on screens smaller than lg</div>
Display in print
Change the display
value of elements when printing with our print display utility classes. Includes support for the same display
values as our responsive .d-*
utilities.
.d-print-none
.d-print-inline
.d-print-inline-block
.d-print-block
.d-print-grid
.d-print-table
.d-print-table-row
.d-print-table-cell
.d-print-flex
.d-print-inline-flex
The print and display classes can be combined.
<div class="d-print-none">Screen Only (Hide on print only)</div>
<div class="d-none d-print-block">Print Only (Hide on screen only)</div>
<div class="d-none d-lg-block d-print-block">Hide up to large on screen, but always show on print</div>
Sass
Utilities API
Ekranyň kömekçi hyzmatlary API-de görkezilýär scss/_utilities.scss
. Utilities API-ni nähili ulanmalydygyny öwreniň.
"display": (
responsive: true,
print: true,
property: display,
class: d,
values: inline inline-block block grid table table-row table-cell flex inline-flex none
),