Answers for "bootstrap display screen size"

CSS
25

bootstrap display inline block

<div class="d-inline-block"></div>
Posted by: Guest on May-18-2020
14

bootstrap display none

<!-- Bootstrap 4 -->
<div class="d-none"></div>

<!-- Bootstrap 3 -->
<!-- <div class="hidden-{screen size}"></div> -->
<div class="hidden-md"></div>
Posted by: Guest on May-16-2020
9

bootstrap screen sizes

The Bootstrap grid system has four classes:
xs (for phones - screens less than 768px wide)
sm (for tablets - screens equal to or greater than 768px wide)
md (for small laptops - screens equal to or greater than 992px wide)
lg (for laptops and desktops - screens equal to or greater than 1200px wide)
Posted by: Guest on April-21-2020

Code answers related to "bootstrap display screen size"

Browse Popular Code Answers by Language