Advertisement
afsarwebdev

Specific Browser Support

Sep 9th, 2016
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. // Only IE 10 and 11 Support
  2.  
  3. @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  4.  
  5. // Write your css/scss here
  6.  
  7. }
  8.  
  9. // Only Edge Browser Support
  10.  
  11. @supports (-ms-accelerator:true) {
  12.  
  13. // Writer your css/scss here
  14.  
  15. }
  16.  
  17. // Only Mozilla Browser
  18.  
  19. @-moz-document url-prefix() {
  20.  
  21. //Write your css/scss here
  22.  
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement