Skip to content

Instantly share code, notes, and snippets.

@igstan
Created June 4, 2009 23:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save igstan/123930 to your computer and use it in GitHub Desktop.
Save igstan/123930 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<!--
For more details see:
http://stackoverflow.com/questions/952861/targeting-only-firefox-with-css
-->
<html>
<head>
<style type="text/css">
@-moz-document url-prefix() {
h1 {
color: red;
}
}
</style>
</head>
<body>
<h1>This heading should be rendered red just in Firefox</h1>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment