Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Ondreas/6622975 to your computer and use it in GitHub Desktop.
Save Ondreas/6622975 to your computer and use it in GitHub Desktop.
Three Line Menu 'Navicon' for Modern and Legacy Browsers http://css-tricks.com/three-line-menu-navicon/#comment-196780
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
#navicon {
display: block;
width: 1.75em;
height: .25em;
line-height: 0;
border-top: .75em double #000;
border-bottom: .25em solid #000;
}
</style>
</head>
<body>
<a href="#menu" id="navicon"></a><br />
Unicode example:
<a href="#menu">
&#9776; Menu
</a>
</body></html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment