Any easy way "visible to all breakpoints, but not to" xs "in twitter-bootstrap-3"

I'm new to bootstrap.

While reading the documentation, I noticed that you can set the class for the invisible object by default to make it visible to some breakpoints such as visible-xs , visible-md , which is ok.

But what if I want to hide the default visible object for only one breakpoint. Do I need to add visible-sm visible-md visible-lg class classes to hide it in xs screens? Or is there an easy way, like invisible-xs ? Thanks.

+6
source share
1 answer
 .hidden-xs 

will hide your content for all sections with a resolution of 768 pixels.
view the table on the bootstrap website http://getbootstrap.com/css/#responsive-utilities

+9
source

All Articles