Does not the "hidden-md-down" class exist in the new bootstrap 4?

0

I want to use the class .hidden-md-down but it does not exist in the new bootstrap.min.css.

I do not know if there is one that replaces it ...

    
asked by Nicolas Cortizo 30.11.2017 в 12:06
source

2 answers

2

According to the documentation all classes have been removed : .hidden-* in Bootstrap 4.

Classes .d-*

are now used

For more information see the examples: common-display-values

    
answered by 30.11.2017 в 12:20
2

The hidden- * and visible- * classes no longer exist in Bootstrap 4 Beta.

If you want to hide an item at specific levels or breakpoints in Bootstrap 4, use the classes d- *

In your case:

  

hidden-md-down - > d-none d-lg-block

    
answered by 30.11.2017 в 12:25