@media and screen code example
Example 1: media query
@media only screen and (max-width: 600px) {
body {
background-color: lightblue;
}
}
Example 2: css media screen
@media (max-width: 991px){
.mobile{
display: block;
}
}
Example 3: media query
@media (max-height : 800px){ /* from 0 to 800 px max height applies */
p{
font-size:10px
}
}
Example 4: media css
@media only screen and (max-width: 600px) {
body {
background-color: lightblue;
}
}