I'm currently working on optimizing my application for 5K desktop screens with a resolution of 5120 x 2880, such as the iMac (Retina 5K, 27-inch, 2017).
I'm facing challenges in implementing the right media query to target and style elements for this screen size.
Currently, I have a media query set up for Full HD Television at 1080p which is working properly.
1920 x 1080
@media only screen
and (min-width: 1824px) {
#product-details-main {
width: 32.4%;
overflow: hidden;
min-height: 600px;
padding: 0 0 0 1%;
position: absolute;
right: 140px;
}
}
A similar issue was discussed on this thread before, but the solutions provided didn't work for me.
Any advice or guidance on this matter would be highly appreciated.