Created
February 22, 2013 04:20
-
-
Save lakshman108/5010701 to your computer and use it in GitHub Desktop.
A CodePen by Liam. CSS Menu Live Practice
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
<p><a href="http://line25.com/tutorials/how-to-create-a-pure-css-dropdown-menu">Tutorial Link</a> | |
<nav> | |
<ul> | |
<li><a href="#">One</a></li> | |
<li><a href="#">Two</a> | |
<ul> | |
<li><a href="#">TWO TWO</a></li> | |
<li><a href="#">TWO THREE</a> | |
<ul> | |
<li><a href="#">two two</a></li> | |
<li><a href="#">two three</a></li> | |
</ul> | |
</li> | |
</ul> | |
</li> | |
<li><a href="#">Three</a></li> | |
<li><a href="#">Four</a></li> | |
</ul> | |
</nav> |
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
nav ul ul { | |
display: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment