media screen sizes min and max code example
Example 1: media query
@media only screen and (max-width: 800px) {
body {
background-color: ; /*your color*/
}
}
Example 2: media query
@media (max-height : 800px){ /* from 0 to 800 px max height applies */
p{
font-size:10px
}
}