Answers for "css if 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
0

html if screen is smaller thatn

@media screen and (max-width: 1024px) {
    .yourClass {
        display: none !important;
    }
}
Posted by: Guest on August-29-2021

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

Browse Popular Code Answers by Language