Answers for "bootstrap tags for responsiveness"

CSS
0

bootstrap responsive meta tag

<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
Posted by: Guest on August-09-2021
0

responsiveness in bootstrap

/* Extra small devices (phones, less than 768px) */
/* No media query since this is the default in Bootstrap */

/* Small devices (tablets, 768px and up) */
@media (min-width: @screen-sm-min) { ... }

/* Medium devices (desktops, 992px and up) */
@media (min-width: @screen-md-min) { ... }

/* Large devices (large desktops, 1200px and up) */
@media (min-width: @screen-lg-min) { ... }
Posted by: Guest on September-25-2020

Browse Popular Code Answers by Language