Answers for "html if screen width"

13

javascript if screen width

if ($(window).width() < 960) {
   alert('Less than 960');
}
else {
   alert('More than 960');
}
Posted by: Guest on February-26-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 "Javascript"

Browse Popular Code Answers by Language