Web Designing for the Retina display – 1
The new iPad’s retina display pretty much doubles the resolution and now have an overwhelming 2048 x 1536 resolution screen rather than the old and usual 1024 x 768 resolution one. It has 44 per cent greater color saturation and 3.1 million pixels which is about over a million more number of pixels than HD TV. It’s pretty good for the digital world – better display, crisp readability and what not but has made web designers’ workload more. Quite a lot more. A big problem here is with the images we put/ use on our websites. They might end up looking worse as the ones we use are mostly web optimized for faster loading and what not. Displaying the same images in the new retina display of 9.7″ will make it look blurred.
So, how to deal with this issue?
Well, we can use better looking images. Better looking images will incur larger file sizes, which will lead to longer page loading times. So, the 4G feature in the new tablet from Apple may help compensate?
There’s a better solution – Go Responsive!
You can make your site responsive by adding custom media queries. With media queries you can have separate images for both the high resolution and low resolution. However, you will have to maintain two sets of images (high resolution and low resolution) and since they’re supposed to work with CSS they won’t help solve image element problems.
Mark Bloomfield suggests one very handy trick:
@media
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (min-device-pixel-ratio: 2) {
#logo {
background: url(images/logo-ipad.png) 0 0 no-repeat;
background-size: contain;
}
}
This is not the full solution but a good way to start adapting to the new retina display. HD web is something that we all, as web designers and developers, have to catch up and start creating solutions.
Got good tips or want to add something to this article? Comment below.











