Reputation: 196
<div class="mobile"></div>
<div class="desktop"></div>
I want to show these div items separately in mobile and desktop devices using bootstrap. I want something like:
<div class="mobile show-on-mobile">This item is not shown in desktop devices.</div>
<div class="desktop show-on-desktop">This item is not shown in mobile devices.</div>
Upvotes: 1
Views: 1324
Reputation: 147
You can do it like below:
<div class="mobile visible-xs visible-sm">This item is not shown in desktop devices.</div>
<div class="desktop hidden-xs hidden-sm">This item is not shown in mobile devices.</div>
Check this url for more info. http://getbootstrap.com/css/
Upvotes: 5