@media queries

Philip Tellis beleuchtet einige Probleme beim Einsatz von @media queries für Mobile-Browser:

Now this works reasonably well when you resize desktop browsers, but not so much for mobile browsers. The problem is that mobile browsers (iPhone/Safari, Android/Chrome and Fennec) assume that the page were designed for a wide screen, and shrink it to fit into the smaller screen. This means that even though users could have had a good customised experience for their smaller devices, they won’t because the device doesn’t know about this. The trick is to use Apple’s viewport meta tag in your document’s head in conjunction with @media queries.

Possibly related posts (automatically generated)