Skip to content

Instantly share code, notes, and snippets.

@dayvonjersen
Last active August 29, 2015 14:26
Show Gist options
  • Save dayvonjersen/f562ffd0fab0f25a9d2b to your computer and use it in GitHub Desktop.
Save dayvonjersen/f562ffd0fab0f25a9d2b to your computer and use it in GitHub Desktop.
single element hamburger
<style>
.hamburger {
box-sizing: border-box;
width: 25px;
height: 20px;
border-top: 2px solid;
border-bottom: 2px solid;
position: relative;
}
.hamburger::before{
content: "";
position: absolute;
width: 100%;
top: calc(50% - 1px);
height: 2px;
background: currentColor;
}
</style>
<div class="hamburger"></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment