how to write media queries in css 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: css media query
@media (min-width: 576px) {
.selector {
background-color:#f00;
}
}
@media (min-width: 768px) {}
@media (min-width: 992px) {}
@media (min-width: 1200px) {}
Example 4: orientation css max and min width media query
<style type="text/css">
@media only screen and (min-width: 960px) {
}
@media only screen and (min-width: 1440px) {
}
@media only screen and (min-width: 2000px) {
}
@media only screen and (max-device-width: 480px) {
}
@media only screen and (device-width: 768px) {
}
@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait) {
}
@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape) {
}
</style>
Example 5: media query
@media only screen and (max-width: 600px) {}
@media only screen and (min-width: 600px) {}
@media only screen and (min-width: 768px) {}
@media only screen and (min-width: 992px) {}
@media only screen and (min-width: 1200px) {}
Example 6: media query
@media (max-height : 800px){
p{
font-size:10px
}
}