Mobile Responsive Css

media query
@media only screen and (max-width: 600px) {
body {
background-color: lightblue;
}
}
mobile responsive css
@media only screen and (max-width: 768px) {
/* For mobile phones: */
[class*="col-"] {
width: 100%;
}
}

Leave a Comment