Advertisement
Guest User

Untitled

a guest
Sep 6th, 2012
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <head>
  2. <title>Retina Test</title>
  3. <style type="text/css">
  4. #test {background-color:green; height: 20px width: 20px}
  5. @media all and (-webkit-min-device-pixel-ratio: 1.5) {
  6. #test {background-color:blue; height: 20px width: 20px}
  7. }
  8. </style>
  9. </head>
  10. <body>
  11. <div id="test">test</div>
  12. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement