Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Any easy way of 'visible for all breakpoints but not for 'xs' in twitter-bootstrap-3'

I am new with bootstrap.

While reading documentation I noticed that it is posible to set a class for a default invisible object to make it visible for some breakpoints like visible-xs, visible-md that is OK.

But what if I want to hide a default visible object for only one breakpoint. Do I have to add all classes visible-sm visible-md visible-lg classes to hide it in xs screens? Or is there any easy way like invisible-xs? Thank you.

like image 301
effe Avatar asked Dec 30 '13 07:12

effe


1 Answers

.hidden-xs

will hide your content for all divices under 768px resolution.
check out the table at bootstrap website http://getbootstrap.com/css/#responsive-utilities

like image 89
fafchook Avatar answered Sep 21 '22 13:09

fafchook