Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. @media (orientation: portrait) {
  2. .width-vmax { width: 100vh }
  3. .width-vmin { width: 100vw }
  4. .height-vmax { height: 100vh }
  5. .height-vmin { height: 100vw }
  6. }
  7.  
  8. @media (orientation: landscape) {
  9. .width-vmax { width: 100vw }
  10. .width-vmin { width: 100vh }
  11. .height-vmax { height: 100vw }
  12. .height-vmin { height: 100vh }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement