Display Property Quickly and responsively toggle the display value of components and more with our display utilities.

How it works
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.

Displaying elements

Display utility classes that apply to all breakpoints, from xsto xl, 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

As such, the classes are named using the format:

  • .d-{value}for xs
  • .d-{breakpoint}-{value}for sm, md, lg, and xl.

Where valueis one of:

  • none
  • inline
  • inline-block
  • block
  • table
  • table-cell
  • table-row
  • flex
  • inline-flex

The media queries effect screen widths with the given breakpoint or larger. For example, .d-lg-nonesets display: none;on both lgand xlscreens.

Hiding elements (BS3 method)

This method for hidding elements is from Bootstrap version 3.0, it is a more quicker way of hiding responsive elements. However, the Bootstrap 4 method will give you greater control. Remember to use either of the method on a single element, otherwise it may not work
Extra small devices Phones (<0px) Small devices Tablets (≥576px) Medium devices Desktops (≥768px) Large devices Desktops (≥992px) Extra Large devices Desktops (≥1200px)
.hidden-xs-downhiddenvisiblevisiblevisiblevisible
.hidden-sm-downhiddenhiddenvisiblevisiblevisible
.hidden-md-downhiddenhiddenhiddenvisiblevisible
.hidden-lg-downhiddenhiddenhiddenhiddenvisible
.hidden-xl-downhiddenhiddenhiddenhiddenhidden
.hidden-xs-uphiddenhiddenhiddenhiddenhidden
.hidden-sm-upvisiblehiddenhiddenhiddenhidden
.hidden-md-upvisiblevisiblehiddenhiddenhidden
.hidden-lg-upvisiblevisiblevisiblehiddenhidden
.hidden-xl-upvisiblevisiblevisiblevisiblehidden

Display Print

Change the displayvalue of elements when printing with our print display utility classes. Includes support for the same displayvalues as our responsive .d-*utilities.

  • .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

The print and display classes can be combined.

Hiding elements (BS4 method)

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-noneclass or one of the .d-{sm,md,lg,xl}-noneclasses for any responsive screen variation.

To show an element only on a given interval of screen sizes you can combine one .d-*-noneclass with a .d-*-*class, for example .d-none .d-md-block .d-xl-nonewill hide the element for all screen sizes except on medium and large devices.

Screen SizeClass
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
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