Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS [Solved] Combining multiple media queries for the same styles Re: Combining multiple media queries for the same styles

#129578
Philben
Participant

iPad screen size is 1024 x 768; so media query like:
@media only screen and (max-device-width: 1024px) {
/* all elements must be scaled here */
}
This will cover all devices with width 1024px or less including iPhones.