CSS Media Requests on iPad 3 (or newer iPad)
3 answers
Media queries for the new iPad (or iPad 3) remain pretty much the same. So if you check the minimum device width as 768px it will still work for the new iPad. However, to be more specific, you might want to check the device width between 1536 px and 2048 px.
There is a very good tutorial on using CSS Media Queries at http://itunes.apple.com/in/app/designmobileweb/id486198804?mt=8
-1
source to share
I believe so.
If you're concerned about the impact of further increasing pixel resolution on the new Retina display, add the following to the page header element:
<meta name="viewport" content="width=device-width, maximum-scale=1.0" />
See this article for some very helpful information on detecting viewport sizes:
0
source to share