Design comparison
SolutionDesign
Solution retrospective
HOW TO MAKE HAMBURGER NAVBAR?????????
Community feedback
- @InterceptorTTPosted over 1 year ago
For the hamburger button you can do something like this:
HTML:
<div id="hamburger"> <a href=""> <span></span> <span></span> <span></span> </a> </div>CSS:
#hamburger{ display: flex; flex-direction: row; transform: rotate(90deg); display: none; span{ border: solid 3px black; margin: 3px; width: 50px; }; }
0
Please log in to post a comment
Log in with GitHubJoin our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord