Answers for "css when screen is smaller than"

CSS
0

css if screen size less than

@media (max-width:960px) { css... } //nothing with screen size bigger than 960px

@media (min-width:960px) { css... } //nothing with screen size smaller than 960px
Posted by: Guest on October-17-2020
1

css media screen

@media (max-width: 991px){
    .mobile{
        display: block;
    }
}
Posted by: Guest on October-30-2020

Code answers related to "css when screen is smaller than"

Browse Popular Code Answers by Language