Advertisement
Guest User

Untitled

a guest
Sep 16th, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. /* Firefox */
  2. @-moz-document url-prefix() {
  3. body {
  4. color: #f00;
  5. }
  6. }
  7.  
  8. /* Safari & Chrome */
  9. @media screen and (-webkit-min-device-pixel-ratio:0) {
  10. body {
  11. color: #ccc;
  12. }
  13. }
  14.  
  15. /* IE 11 (and above) */
  16. _:-ms-fullscreen, :root .ie11up {
  17. body {
  18. color: #000;
  19. }
  20. }
  21.  
  22.  
  23. /* IE 8,9 and 10 */
  24. @media screen\0 {
  25. .ie8910 {
  26. property: value;
  27. }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement