Advertisement
Guest User

Untitled

a guest
May 31st, 2012
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.71 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4.   <meta content="text/html; charset=utf-8" http-equiv="content-type" />
  5.   <title>CSSMQdemo</title>  
  6. <meta name="viewport" content="initial-scale=1, width=device-width">
  7.  
  8. <style type="text/css">
  9. #text{
  10.   color:#0f0;
  11. }
  12. @media only screen and (orientation:landscape){
  13. #text{
  14.   color:#f00;
  15. }
  16. }
  17. @media only screen and (orientation:portrait){
  18. #text{
  19.   color:#00f;
  20. }
  21. }
  22. </style>
  23.         </head>
  24.  
  25. <body>
  26.  
  27.  
  28.  
  29. <span id="text">Le texte devrait être en vert par défaut, en rouge en landscape, et en bleu en portrait</span>
  30.  
  31.  
  32.  
  33. </body>
  34.  
  35. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement