Last active
November 6, 2015 09:41
-
-
Save o-nasteka/278d0ebc8f03e311566f to your computer and use it in GitHub Desktop.
This file contains 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
ul { | |
padding: 0; | |
margin: 0; | |
} | |
li { | |
display: inline; | |
position: relative; | |
} | |
ul ul { | |
position: absolute; | |
display: none; | |
} | |
li:hover ul { | |
display: block; | |
} |
This file contains 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
<ul> | |
<li> | |
<a href="">Birds</a> | |
<ul> | |
<li><a href="">Ratites</a></li> | |
<li><a href="">Fowl</a></li> | |
<li><a href="">Neoaves</a></li> | |
</ul> | |
</li> | |
<li> | |
<a href="">Mammals</a> | |
<ul> | |
<li><a href="">Monotremes</a></li> | |
<li><a href="">Marsupials</a></li> | |
<li><a href="">Placentals</a></li> | |
</ul> | |
</li> | |
<!-- etc. --> | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment