Currently, I am working with a client who needs interfaces to be adapted for two screens with a resolution of 2560x1600.
The challenge is that both screens have the same resolution but different screen diagonals. One has a 27" diagonal and the other... only 9".
As a result, it is nearly impossible to read elements on the 9" screen, which is why specific adjustments are necessary.
Initially, I considered using DPR (device pixel ratio) to address the issue, assuming they were not the same... however, they both have a DRP of 1.
Therefore, I am unable to utilize CSS media query rules.
@media (min-width: 2560px) and (-webkit-min-device-pixel-ratio: 2.5) { ... }
Does anyone have any ideas or suggestions?
Thank you!