Answer the question
In order to leave comments, you need to log in
How to create Responsive Design for Screen Resolutions with same Length but different Width?
ESSENCE: make a responsive design for screen resolutions: 1280x1024 / 1280x800 / 1280x768 / 1280x720 / 1280x600.
At the moment, implemented via media queries like this: @media(max-width:1280px) but this way you can make responsive design for only one of the resolutions above, how to do it for all resolutions ?
Answer the question
In order to leave comments, you need to log in
htmlbook.ru/css/value/media
@media screen and (max-width:1280px), (min-height:800px) {
...
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question