Last active
December 29, 2019 18:14
-
-
Save estefanionsantos/41cc6aff5f51f53f120878e468109f2c to your computer and use it in GitHub Desktop.
nav horizontal responsive without javascript
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
<div class="expand bg_prm"> | |
<div class="container"> | |
<input type="checkbox" id="nv_bar_bt" /> | |
<label for="nv_bar_bt">☰</label> | |
<div class="nv_bar nv_prm"> | |
<ul> | |
<li><a href="#">Dobok CSS</a></li> | |
<li> | |
<a href="#">Products</a> | |
<ul> | |
<li><a href="#">Product 1</a></li> | |
<li><a href="#">Product 2</a></li> | |
<li> | |
<a href="#">Product 3</a> | |
<ul> | |
<li><a href="#">Sub Product 1</a></li> | |
<li><a href="#">Sub Product 2</a></li> | |
<li><a href="#">Sub Product 3</a></li> | |
</ul> | |
</li> | |
</ul> | |
</li> | |
<li><a href="#">About</a></li> | |
<li><a href="#">Contact</a></li> | |
<li><a href="https://github.com/dobokcss/dobokcss">Github</a></li> | |
<li><a href="https://github.com/dobokcss/dobokcss/archive/master.zip">Download</a></li> | |
</ul> | |
</div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment