Answers for "how to check the screen size in html"

4

javascript screen size

var w = window.innerWidth;
var h = window.innerHeight;
Posted by: Guest on March-13-2021
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 "how to check the screen size in html"

Browse Popular Code Answers by Language