how media query works code example
Example 1: css media queries
@media only screen and (max-width: 1200px){
}
@media only screen and (max-width: 600px){
}
@media only screen and (max-width: 425px){
}
Example 2: media query
@media only screen and (max-width: 600px) {
body {
background-color: lightblue;
}
}
Example 3: hegith specific css in media query
@media (height: 360px) {
div {
color: red;
}
}
@media (min-height: 25rem) {
div {
background: yellow;
}
}
@media (max-height: 40rem) {
div {
border: 2px solid blue;
}
}
Example 4: media query
@media only screen and (max-width: 800px) {
body {
background-color: ;
}
}
Example 5: media query
@media (max-height : 800px){
p{
font-size:10px
}
}