Skip to content

Instantly share code, notes, and snippets.

@zmmbreeze
Created May 7, 2013 09:17
Show Gist options
  • Save zmmbreeze/5531351 to your computer and use it in GitHub Desktop.
Save zmmbreeze/5531351 to your computer and use it in GitHub Desktop.
firefox hack
/* Firefox 2 */
html>/**/body .selector, x:-moz-any-link {
color:lime;
}
/* Firefox 3 */
html>/**/body .selector, x:-moz-any-link, x:default {
color:lime;
}
/* Any Firefox */
@-moz-document url-prefix() {
.selector {
color:lime;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment