Advertisement
contatowellington

Untitled

May 25th, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. <style>
  2. /* modo retrado */
  3. @media all and (orientation:portrait) {
  4.  
  5. body{
  6. color:blue;
  7. }
  8.  
  9. }
  10. /* modo paisagem */
  11. @media all and (orientation:landscape) {
  12.  
  13. body{
  14. color:red;
  15. }
  16.  
  17. }
  18. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement