Return to Snippet

Revision: 59231
at August 26, 2012 04:28 by zreedeecom


Initial Code
/*	Retina media query.
	Overrides styles for devices with a 
	device-pixel-ratio of 2+, such as iPhone 4.
-----------------------------------------------    */

@media 
	only screen and (-webkit-min-device-pixel-ratio: 2),
	only screen and (min-device-pixel-ratio: 2) {
	
	body {
	
	}
	
}

Initial URL
http://lessframework.com/

Initial Description
I took it from lessframework.

Initial Title
Target retina screen with mediaquery

Initial Tags
css

Initial Language
CSS