Reputation: 6033
I use from bootstrap 3
, a have a div, i want to show this in only XS and LG devices. how I can do this work?
Upvotes: 1
Views: 678
Reputation: 362280
Using the responsive utility classes...
<div class="visible-lg hidden-md hidden-sm visible-xs">visible large and xs</div>
Demo: http://bootply.com/78724
Upvotes: 3