Very simple and stylish looking standard horizontal dropdown menus using CSS.

This is the CSS part
<style>
.menu{
border:none;
border:0px;
margin:0px;
padding:0px;
font: 67.5% "Lucida Sans Unicode", "Bitstream Vera Sans", "Trebuchet Unicode MS", "Lucida Grande", Verdana, Helvetica, sans-serif;
font-size:14px;
font-weight:bold;
}
.menu ul{
background:#333333;
height:35px;
list-style:none;
margin:0;
padding:0;
}
.menu li{
float:left;
padding:0px;
}
.menu li a{
background:#333333 url("seperator.gif") bottom right no-repeat;
color:#cccccc;
display:block;
font-weight:normal;
line-height:35px;
margin:0px;
padding:0px 25px;
text-align:center;
text-decoration:none;
}
.menu li a:hover, .menu ul li:hover a{
background: #2580a2 url("hover.gif") bottom center no-repeat;
color:#FFFFFF;
text-decoration:none;
}
.menu li ul{
background:#333333;
display:none;
height:auto;
padding:0px;
margin:0px;
border:0px;
position:absolute;
width:225px;
z-index:200;
/*top:1em;
/*left:0;*/
}
.menu li:hover ul{
display:block;
}
.menu li li {
background:url('sub_sep.gif') bottom left no-repeat;
display:block;
float:none;
margin:0px;
padding:0px;
width:225px;
}
.menu li:hover li a{
background:none;
}
.menu li ul a{
display:block;
height:35px;
font-size:12px;
font-style:normal;
margin:0px;
padding:0px 10px 0px 15px;
text-align:left;
}
.menu li ul a:hover, .menu li ul li:hover a{
background:#cc9999 url('') center left no-repeat;
border:0px;
color:#ffffff;
text-decoration:none;
}
.menu p{
clear:left;
}
</style>
The HTML part
<div class="menu"> <ul> <li><a href="http://mistonline.in">Home</a></li> <li><a href="#" id="current">Tutorials</a> <ul> <li><a href="#">PHP</a></li> <li><a href="#">Apache</a></li> <li><a href="#">MySql</a></li> <li><a href="#">Ajax</a></li> <li><a href="#">Javascript</a></li> </ul> </li> <li><a href="http://mistonline.in">Contact</a></li> </ul> </div>
Incoming search terms:
- css horizontal drop down menu (41)
- stylish horizontal css menu (29)
- stylish drop down menu css (21)
- horizontal dropdown menu (15)
- horizontal drop down menu css (11)
- css horizontal dropdown menu (9)
- stylish drop down menu in css (9)
- menu inurl:/gb php?id= (8)
- stylish css drop down menu (8)
- horizontal dropdown menu css (7)
- CSS tutorials centered horizontal drop down menu (7)
- dynamic drop down menus using css (7)
- css horizontal drop down menu tutorial (7)
- horizontal drop down menu in css (7)
- stylish horizontal ul li menu (6)
- stylish horizontal menu (6)
- stylish drop down menu free download (5)
- stylish horizontal rop down menu in css (5)
- css horizontal drop down menus (5)
- stylish horizontal dropdown menu (5)
- horizontal drop down menu with css (4)
- stylish horizontal menu css (4)
- stylish Drop down CSS (4)
- stylish css horizontal menu (4)
- stylish horizontal drop down menu (4)
- stylish horizontal menus (4)
- simple horizontal drop down menu (4)
- centered horizontal dropdown menu (4)
- horizontal css drop down menu (3)
- horizontal drop down (3)
- simple horizontal drop down menu css (3)
- stylish css horizontal drop down menu (3)
- horizontal drop down menu using css (3)
- horizontal dropdown menu using css (3)
- css dropdown menu tutorial horizontal (3)
- free stylish horizontal drop down menu (3)
- horizontal drop down menu using css html (3)
- stylish dropdown menu css (3)
- tutorial css Horizontal Drop Down Menus with class (3)
- diplsy horizontal css php mysql menu (3)
You will also be interested in ,
- Transparent Box using CSS
- Cursor:hand css not working with mozilla/firefox
- CSS or Table?
- Simple page flip effect using Jquery, css and simple html
- Standard horizontal menu using css
- Changing link style properties using css
- Autosuggestion / Autocomplete script using PHP and Ajax
- Learn CSS Basics Very Simple Tutorial
- Simple CSS Dropdown Menu
- Drop down menu going behind flash element

