Wednesday, 5 March 2014

Horizontal Menus With Vertical SubMenus Using Css : Very Basic

<html>
<head>
<style>

body ul ul
{
display:none;
text-shadow:10px 5px 5px red;


}

body ul li
{
list-style:none;
padding:10;
float:left; /*Remove this comment to make it horizontal*/
}

body ul li:hover > ul
{
display:block;
position:absolute;
margin-top:10px;
top:20px;
width:30px;
left:80px;

}







</style>





</head>
<body>
<div>
<div>
<ul>
<li>Home</li>
<li>Gallery
<ul>
<li>Img1</li>
<li>img2</li>
</ul>



</li>
<li>ContactUs</li>
</ul>
</div>
</div>

</body>
</html>

No comments:

Post a Comment