Wednesday, 5 March 2014

Vertical Menu With Horizontal SubMenus USING CSS : VERY BASIC

<html>
<head>
<style>

body ul ul
{
display:none;
background-color:green;
}

body ul li
{
list-style:none;
padding:10;


}

body ul li:hover >   ul
{


display:inline;
}
body ul li:hover > ul li
{
height:500px;
display:inline;

}






</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