Skip to main content

Posts

Showing posts with the label Dropdown boxes.

Dropdown Boxes in html

This post is about creating Dropdown boxes in html. <html> <head> <title> DropDown</title> <style media="screen" type="text/css"> .clearfix:after {     display:block;     clear:both; } /*----- Menu Outline -----*/ .menu a {     transition:all linear 0.15s;     color:#919191; } .menu .arrow {     font-size:11px;     line-height:0%; } /*----- Top Level -----*/ .menu > ul > li {     float:left;     display:inline-block;     position:relative;     font-size:19px; } .menu > ul > li > a {     padding:10px 40px;     display:inline-block;     text-shadow:0px 1px 0px rgba(0,0,0,0.4); } .menu > ul > li:hover > a, .menu > ul > .current-item ...