css if screen size less than

Solutions on MaxInterview for css if screen size less than by the best coders in the world

showing results for - "css if screen size less than"
Gaia
03 Jan 2019
1@media (max-width:960px) { css... } //nothing with screen size bigger than 960px
2
3@media (min-width:960px) { css... } //nothing with screen size smaller than 960px
4