As a beginner in bootstrap, I've been exploring the documentation and came across an interesting feature. It seems that you can assign a class to a default invisible object to make it visible for specific breakpoints such as visible-xs
, visible-md
, which is pretty cool.
Now, my question is: what if I want to hide a default visible object for only one specific breakpoint? Do I have to add all classes like visible-sm visible-md visible-lg
to hide it on xs
screens? Or is there a simpler solution similar to invisible-xs
?
Thank you for your help!