Possible Duplicate:
CSS media query to target iPad and iPad only?
I'm trying to target only with css iPads and iPads only, all the solutions I found were similar to this:
<link type="text/css" rel="stylesheet" media="only screen and (min-device-width: 768px) and (max-device-width: 1024px)" href="css/ipadStyleRV.css" />
but this targets iPad and screens with resolution 1024 x 768. I want to target ONLY iPads and not desktop screens.
Is there a way to do it ONLY with media queries?
Thank you