media queries and 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: min and max width media query
@media (max-width: 989px) and (min-width: 768px) {}
Example 3: 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 4: media query min max
@media screen and (min-width: 200px) and (max-width: 640px) {
.bloc {
display:block;
clear:both;
}
}
Example 5: media query
@media only screen and (max-width: 800px) {
body {
background-color: ;
}
}