Can a media query be created specifically for 5:4 desktops (1280x1024 resolution)?
I attempted using the following code:
@media screen and (max-width: 1281px) and (min-height: 1023px) {
}
However, it doesn't seem to be functioning as expected.