I am looking to implement certain features on a page when the screen width is at least 1025px or when a mobile device is rotated horizontally. I have been experimenting with media queries for this purpose. Am I on the right track?
I am looking to implement certain features on a page when the screen width is at least 1025px or when a mobile device is rotated horizontally. I have been experimenting with media queries for this purpose. Am I on the right track?
@media (min-width: 1025px) or (orientation: landscape) {...}