This is a demonstration of a vertical navigation list or menu, which pops up a vertical drop-down menu on the right side when hovered. The HTML codes are very simple, as follows: a navigation item a navigation list item ... ......
See more »
This is a demonstration of a vertical navigation list or menu, which pops up a vertical drop-down menu on the right side when hovered. The HTML codes are very simple, as follows: a navigation item a navigation list item ... ... ... a navigation item another navigation list item ... ... ... ... ... The ul tag is assigned with the class of nav. That's the only class needed to be refered from the style sheet. The CSS codes are shown below, with comments: /*** Nav bar styles ***/ ul.nav, .nav ul{ /*Remove all spacings from the list items*/ margin: 0; padding: 0; cursor: default; list-style-type: none; } ul.nav{ width: 20ex; /*Optional, to make the navigation bar positions on the left of the content*/ float: left; margin-right: 1em; } ul.nav>li{ margin: 0; padding: 2px 6px; } ul.nav li>ul{ /*Make the sub list items invisible*/ display: none; position: absolute; width: 20ex; left: 20ex; margin-top: -1.4em; margin-left: 9px; } ul.nav li:hover>ul{ /*When hovered, make them appear*/ display : block; } .nav ul li a{ /*Make the hyperlinks as a block element, sort of a hover effect*/ display: block; padding: 2px 10px; } /*** Menu styles (customizable) ***/ ul.nav, .nav ul, .nav ul li a{ background-color: #fff; color: #369; } ul.nav li:hover, .nav ul li a:hover{ background-color: #369; color: #fff; } ul.nav li:active, .nav ul li a:active{ background-color: #036; color: #fff; } ul{ border: 1px solid #369; } .nav a{ text-decoration: none; }
See less »
Kaboodle will send you a newsletter and updates from your friends. You can unsubscribe at any time. Kaboodle does not sell or share your email address or personal information with anyone.
Kaboodle requires all users to provide their real date of birth as both a safety precaution and as a means
of preserving the integrity of the site. You will be able to hide this information from your profile if you wish.
Added by 1 people