I am working on a menu icon for a CSS hamburger while it works great, except that line spacing is not available. How can I change this code so that the whole button is pressed, not just the lines?
<a href="#" title="Open Menu" class="menu"></a>
.menu {
width:30px;
height:5px;
background-color:#000;
position:relative;
display:inline-block;
}
.menu:after, .menu:before {
content: '';
width: 100%;
height:5px;
background-color:#000;
position:absolute;
}
.menu:after {
top:10px;
left:0;
}
.menu:before {
top:20px;
left:0;
}
Here's the JSFiddle .
Thank!
source
share