Error
Hide or show elements at various screen sizes and more with the following display utilities.
Change the value of the display property with our responsive display utility classes. We purposely support only a subset of all possible values for display. Classes can be combined for various effects as you need.
display
Display utility classes that apply to all breakpoints, from xs to lg, have no breakpoint abbreviation in them. This is because those classes are applied from min-width: 0; and up, and thus are not bound by a media query. The remaining breakpoints, however, do include a breakpoint abbreviation.
xs
lg
min-width: 0;
As such, the classes are named using the format:
.d-{value}
.d-{breakpoint}-{value}
sm
md
print
Where value is one of:
none
inline
inline-block
block
table
table-cell
table-row
flex
inline-flex
<div class="d-inline p-2 bg-primary text-white">d-inline</div> <div class="d-inline p-2 bg-info text-white">d-inline</div>
<div class="d-block p-2 bg-primary text-white">d-block</div> <div class="d-block p-2 bg-info text-white">d-block</div>
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}-none classes for any responsive screen variation.
.d-none
.d-{sm,md,lg}-none
.d-none .d-sm-block
.d-sm-none .d-md-block
.d-md-none .d-lg-block
.d-lg-none
.d-block
.d-block .d-sm-none
.d-none .d-sm-block .d-md-none
.d-none .d-md-block .d-lg-none
.d-none .d-lg-block
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-*
.d-print-none
.d-print-inline
.d-print-inline-block
.d-print-block
.d-print-table
.d-print-table-row
.d-print-table-cell
.d-print-flex
.d-print-inline-flex