Advertisement
Guest User

Untitled

a guest
Aug 13th, 2013
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.56 KB | None | 0 0
  1. <html lang="en">
  2. <head>
  3.     <meta charset="utf-8">
  4.     <meta name="HandheldFriendly" content="True">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=yes" />
  6.  
  7.     <title>TEST</title>
  8.  
  9.     <style>
  10.     html, body {
  11.         width: 100%; height: 100%;
  12.         padding: 0; margin: 0;
  13.     }
  14.     @media (max-width: 240px) {
  15.         html, body { background-color: red; }
  16.     }
  17.     </style>
  18. </head>
  19. <body>
  20.     <div>
  21.         <script>
  22.         document.write(screen.width + 'x' + screen.height);
  23.         </script>
  24.     </div>
  25.     <hr style="width: 240px;">
  26.     <hr style="width: 320px;">
  27. </body>
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement