How to write a media request to have all devices in landscape orientation, but with a size smaller than the specified? That is, in the code something like this should be -
@media all and (orientation: landscape) and (not min-width: 300px) and (not min-height: 500px){}
That is, I need to perform an action with the code only when landscape orientation, but on condition that the viewport size is less than 300x500.
not min-width: 500px = max-width: 500px
- MasterAlex