Created
December 17, 2013 20:15
-
-
Save exarcheia-web/8011827 to your computer and use it in GitHub Desktop.
Basic menu with sub-menu css
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
| /* Basic menu with sub-menu css */ | |
| .menu-main li { | |
| list-style: none; | |
| } | |
| .menu-main > li { | |
| display: inline-block; | |
| vertical-align: top; | |
| position: relative; | |
| } | |
| .sub-menu { | |
| display: none; | |
| position: absolute; | |
| top: 100%; | |
| left: 0; | |
| padding: 0; | |
| } | |
| .menu-main > li:hover .sub-menu { | |
| display: block; | |
| } |
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
| <ul class="menu-main"> | |
| <li><a href="#0">Home</a></li> | |
| <li><a href="#0">About</a></li> | |
| <li><a href="#0">Services</a> | |
| <ul class="sub-menu"> | |
| <li><a href="#0">Graphic Design</a></li> | |
| <li><a href="#0">Web Development</a></li> | |
| <li><a href="#0">Web Hosting</a></li> | |
| </ul> | |
| </li> | |
| <li><a href="#0">Contact</a></li> | |
| </ul> |
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":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"html"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment