Guest User

Untitled

a guest
Oct 23rd, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. // IE8, IE9, IE10
  2. @media screen\0 {
  3. // styles
  4. }
  5.  
  6. // IE9 Only
  7. @media screen and (min-width:0\0) and (min-resolution: .001dpcm) {
  8. // styles
  9. }
  10.  
  11. // IE9+
  12. @media screen and (min-width:0\0) and (min-resolution: +72dpi) {
  13. // styles
  14. }
  15.  
  16. // IE10+
  17. @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  18. // styles
  19. }
  20.  
  21. // Edge Detection
  22. @supports (-ms-ime-align:auto) or (-ms-accelerator:auto) {
  23. // styles
  24. }
Add Comment
Please, Sign In to add comment