what is media screen in css code example
Example 1: css media screen
@media (max-width: 991px){
.mobile{
display: block;
}
}
Example 2: media css
@media only screen and (max-width: 600px) {
body {
background-color: lightblue;
}
}