Skip to content

Instantly share code, notes, and snippets.

@cristianmiranda
Created January 13, 2016 17:00
Show Gist options
  • Select an option

  • Save cristianmiranda/387b5108f38dc7a2f29b to your computer and use it in GitHub Desktop.

Select an option

Save cristianmiranda/387b5108f38dc7a2f29b to your computer and use it in GitHub Desktop.
Specific Browser CSS
/* 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