-
-
Save james0r/78a3ac1e38328d51d6ee92da800f304b to your computer and use it in GitHub Desktop.
CSS Dropdown - Markup with <li> content
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<header> | |
<div class="hamburger-container"> | |
<div></div> | |
<div></div> | |
<div></div> | |
<input type="checkbox"> | |
<nav> | |
<ul> | |
<li> | |
Item 1 | |
</li> | |
<li> | |
Item 2 | |
</li> | |
<li> | |
Item 3 | |
</li> | |
</ul> | |
</nav> | |
</div> | |
</header> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment