Advertisement
salmancreation

Internet Explorer 10 in Windows 8 and Windows Phone 8 Bug fi

Nov 6th, 2015
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.35 KB | None | 0 0
  1.  
  2. /* Internet Explorer 10 in Windows 8 and Windows Phone 8 Bug fix */
  3.  
  4. @-webkit-viewport {
  5.     width: device-width;
  6. }
  7.  
  8. @-moz-viewport {
  9.     width: device-width;
  10. }
  11.  
  12. @-ms-viewport {
  13.     width: device-width;
  14. }
  15.  
  16. @-o-viewport {
  17.     width: device-width;
  18. }
  19.  
  20. @viewport {
  21.     width: device-width;
  22. }
  23.  
  24. h1,h2,h3,h4,h5,h6 {
  25.     line-height: 1.2;
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement