Created
January 13, 2016 17:00
-
-
Save cristianmiranda/387b5108f38dc7a2f29b to your computer and use it in GitHub Desktop.
Specific Browser CSS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Google Chrome (version 28+): */ | |
| @supports (-webkit-appearance:none) { | |
| nav.tm_navbar { | |
| background: green; | |
| } | |
| } | |
| /* Mozilla Firefox (all versions): */ | |
| _:-moz-tree-row(hover), nav.tm_navbar { | |
| background: red; | |
| } | |
| /* Internet Explorer (version 10+): */ | |
| @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { | |
| nav.tm_navbar { | |
| background: blue; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment