css mediaquery 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 min and max
@media only screen and (max-width: 600px) {...}
@media only screen and (min-width: 600px) {...}
@media only screen and (max-width: 600px) and (min-width: 400px) {...}
Example 3: media query
@media only screen and (max-width: 600px) {
body {
background-color: lightblue;
}
}
Example 4: media queries les plus utilisees
@media screen and (max-width: 1280px)
@media all and (min-width: 1024px) and (max-width: 1280px)
@media tv
@media all and (orientation: portrait)
Example 5: media query
@media (max-height : 800px){
p{
font-size:10px
}
}