Built with Material Design for Bootstrap - free and powerful Bootstrap UI KIT

Download MDB UI KIT

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 element 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
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

Responsive breakpoints for Bootstrap 4

// [ xs ] Extra small devices (portrait phones, less than 576px)
// No media query since this is the default in Bootstrap

// [ sm ] Small devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

// [ md ] Medium devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

// [ lg ] Large devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

// [ xl ] Extra large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }