media query only for mobile code example
Example 1: media query for mobile view css
@media only screen and (max-width: 600px) {
body {
background-color: lightblue;
}
}
Example 2: media query
// Example media query syntax
@media only screen and (min-width: 768px) {
.my-example-class {
padding: 50px;
}
}
// Best Practice
// keep default style for smallest screen size (portrait mobile, below 576px)
// and then proceed in assending order with media query like below
// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }
// Medium devices (tablets, 768px and up)
@media (min-width: 768px) { ... }
// Large devices (desktops, 992px and up)
@media (min-width: 992px) { ... }
// so on ...
Example 3: media query for mobile landscape only
@media screen and (orientation:landscape) and
(min-device-width: 320px) and (max-device-width: 450px) {
/* Input Styles */
}
Example 4: media queries
@media all and (max-width: 699px) and (min-width: 520px) {
ul li a {
padding-left: 21px;
background: url(../images/email.png) left center no-repeat;
}
}