Answer the question
In order to leave comments, you need to log in
Why might CSS requests fail on the same resolution?
Please tell me what could be the problem and how it can be solved.
3 laptops with a resolution of 1360x768. on two, everything is displayed perfectly, the css request is triggered at a resolution of 1360. on the 3rd laptop, a request is triggered at 1920, although the resolution is 1360.
@media only screen and (min-width:1200px) and (max-width: 1280px) {
...
}
}
@media only screen and (min-width:1281px) and (max-width: 1360px) {
...
}
}
@media only screen and (min-width:1361px) and (max-width: 1920px) {
...
}
}
Answer the question
In order to leave comments, you need to log in
There is no standard resolution of 1360x768, there is 1366x768
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question