css media screen width code example
Example 1: 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 2: media query
@media only screen and (max-width: 600px) {
body {
background-color: lightblue;
}
}
Example 3: 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 4: media query min max
@media screen and (min-width: 200px) and (max-width: 640px) {
.bloc {
display:block;
clear:both;
}
}
Example 5: css media screen
@media (max-width: 991px){
.mobile{
display: block;
}
}
Example 6: screen sizes for css media
<meta name="viewport" content="width=device-width, initial-scale=1" />