Skip to content

Instantly share code, notes, and snippets.

@mikeselander
Created September 29, 2014 17:22
Show Gist options
  • Save mikeselander/f467d5802036613fc527 to your computer and use it in GitHub Desktop.
Save mikeselander/f467d5802036613fc527 to your computer and use it in GitHub Desktop.
Common Browser Specific Selectors
// ================ IE SPECIFIC SELECTORS
background: gray; /* standard */
//background: grey \0/; /* IE8+9 */
//\0/ - i.e. padding: 0px 5px 10px 70px\0/ /* IE 8 only */
background: pink\9; /* IE 9 and below */
*background: green; /* IE 7 and below */
_background: blue; /* IE 6 */
// MOZILLA SELECTOR
@-moz-document url-prefix(){
.selector{ }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment