media screen in css code example
Example 1: 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) {}
Example 2: media rule css
@media only screen and (min-width: 1000px) {
/* place here CSS for when the screen is more than 1000px wide */
.card {
width: 50%;
}
}
Example 3: css media screen
@media (max-width: 991px){
.mobile{
display: block;
}
}
Example 4: media css
@media only screen and (max-width: 600px) {
body {
background-color: lightblue;
}
}