Created
February 22, 2013 03:44
-
-
Save lakshman108/5010554 to your computer and use it in GitHub Desktop.
CSS Menu 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
/** | |
* CSS Menu Practice | |
*/ | |
nav ul ul { | |
display: none; | |
} |
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
<body> | |
<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 two</a></li> | |
</ul> | |
</li> | |
</ul> | |
</li> | |
<li><a href="#">Three</a></li> | |
<li><a href="#">Four</a></li> | |
</ul> | |
</nav> | |
</body> |
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
// alert('Hello world!'); |
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
{"view":"separate","fontsize":"80","seethrough":"","prefixfree":"1","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment