Change the value of the display property with our responsive display utility classes. We support all common values while adding responsive variations for each breakpoint.

Displaying elements

Display utility classes that apply to all breakpoints, from xs to xxxl, have no breakpoint abbreviation in them. The remaining breakpoints include a breakpoint abbreviation. The classes are named using the format:

As such, the classes are named using the format:

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

Where value is one of:

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

The media queries affect screen widths with the given breakpoint or larger:

  • xs: 0px
  • sm: 576px
  • md: 768px
  • lg: 992px
  • xl: 1200px
  • xxl: 1400px
  • xxxl: 1599px

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 <576px Small ≥576px Medium ≥768px Large ≥992px Extra Large ≥1200px XX Large ≥1400px XXX Large ≥1599px
.d-none hidden hidden hidden hidden hidden hidden hidden
.hidden-xs-down hidden visible visible visible visible visible visible
.hidden-sm-down hidden hidden visible visible visible visible visible
.hidden-md-down hidden hidden hidden visible visible visible visible
.hidden-lg-down hidden hidden hidden hidden visible visible visible
.hidden-xl-down hidden hidden hidden hidden hidden visible visible
.hidden-xs-up hidden hidden hidden hidden hidden hidden hidden
.hidden-sm-up visible hidden hidden hidden hidden hidden hidden
.hidden-md-up visible visible hidden hidden hidden hidden hidden
.hidden-lg-up visible visible visible hidden hidden hidden hidden
.hidden-xl-up visible visible visible visible hidden hidden hidden

Display 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-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-none class or one of the .d-{sm,md,lg,xl}-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 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
Hidden only on xxl .d-xxl-none
Hidden only on xxxl .d-xxxl-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