Created
June 28, 2011 19:38
-
-
Save Znow/1051998 to your computer and use it in GitHub Desktop.
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
| #menu { | |
| float: left; | |
| ul { | |
| list-style: none; | |
| ul { | |
| display: none; | |
| } | |
| } | |
| li a:hover ul { | |
| position: absolute; | |
| display: block; | |
| background: black; | |
| border: 1px solid #000; | |
| } | |
| li a:hover ul li { | |
| display: block; | |
| border: 1px solid #000; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment