html if screen is smaller thatn

Solutions on MaxInterview for html if screen is smaller thatn by the best coders in the world

showing results for - "html if screen is smaller thatn"
Sofia
28 Sep 2016
1@media screen and (max-width: 1024px) {
2    .yourClass {
3        display: none !important;
4    }
5}