Media Queries W3schools

media queries w3schools
@media only screen and (max-width: 600px) {
body {
background-color: lightblue;
}
}
css media query
/* BOOSTRAP MEDIA BREAKPOINTS */
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
.selector {
background-color:#f00;
}
}
/* Medium devices (tablets, 768px and up) The navbar toggle appears at this breakpoint */
@media (min-width: 768px) {}
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {}
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {}
css media query
@media screen and (min-width: 992px) {
.greater-than-large {
color: red;
}
}
@media screen and (max-width: 576px) {
.less-than-extra-small {
color: red;
}
}
@media screen and (min-width: 576px) and (max-width: 992px) {
.between-small-and-medium {
color: red;
}
}
media query css
media screen and (min-width: 1300px) {
media screen and (min-width: 400px) and (max-width: 700px) {
media-queries
/* b/w 577px to 720px screens */
@media only screen and (min-width: 577px) and (max-width: 720px) {
h1 {
font-size: 1.0rem;
}
}
@media query css
@media screen and (min-width: 320px) and (max-width: 786px) {
// custom CSS
}
Source: torquemag.io

Leave a Comment