A project that I've been working on, has elements in a scroll. Like this below -
But, certain laptops come with 125% recommended zoom for 1920 X 1080 resolution -
When used that 125% recommended zoom, the elements in the scroll gets hidden, obviously.
Any solution for this?
The below media query will give some relief to the issue.
@media only screen and (min-device-width: 900px) and (max-device-width: 1600px) {
Add styles here.
}