Skip to content

Instantly share code, notes, and snippets.

@gre
Created October 26, 2011 15:58
Show Gist options
  • Save gre/1316801 to your computer and use it in GitHub Desktop.
Save gre/1316801 to your computer and use it in GitHub Desktop.
Having fun with CSS headers (h1 and h2)
h1 {
&:hover:before {
content: '> ';
}
&:hover:after {
content: ' <';
}
}
h2 {
&:before {
content: '> ';
visibility: hidden;
}
&:hover:before {
visibility: visible;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment