Wednesday, November 21, 2012

CSS Vertical Menu

Css Vertical Menu can be build using following code :
Vertical Menu #1
Code
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html xmlns=”http://www.w3.org/1999/xhtml”>
<head>
<meta http-equiv=”Content-Type” content=”text/html; charset=utf-8″ />
<title>Css Simple Menu</title>
<style type=”text/css”>
#vmenu{
margin:0px;
padding:0px;
}

#vmenu ul{
margin:0px;
padding:5px;
list-style:inside;
width:150px;
background-color:#EC0000;
}
#vmenu ul li {
list-style:none;
color:#FF3;
border-bottom:#000 solid 1px;
height:30px;
}
#vmenu ul li a{
display:block;
list-style-type:none;
color:#FF3;
font-size:14px;
font-weight:bold;
text-decoration:none;
height:100%;
width:150px;
}
#vmenu ul li a:hover{
display:block;
color:#FF3;
font-size:14px;
font-weight:bold;
text-decoration:none;
background-color:#FF6262;
height:100%;
}
</style>
</head>
<body>
<div id=”vmenu”>
<ul>
<li><a href=”#”>Home</a></li>
<li><a href=”#”>About us</a></li>
<li><a href=”#”>Contact us</a>
<li> <a href=”#”>Photos</a></li>
</ul>
</div>
</body>
</html>
Output
 Okay have you tried up one. That’s great. Now with simple little modication to the same code you can create simple again another wonderful vertical menu. Lets see below:






Vertical Menu #2
Code:
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html xmlns=”http://www.w3.org/1999/xhtml”>
<head>
<meta http-equiv=”Content-Type” content=”text/html; charset=utf-8″ />
<title>Css Simple Menu</title>
<style type=”text/css”>
#vmenu{
margin:0px;
padding:0px;
}
#vmenu ul{
margin:0px;
list-style:inside;
width:150px;
}
#vmenu ul li {
list-style:none;
color:#FF3;
border:#000 solid 1px;
height:30px;
text-align:center;
background-color:#F5F5F5;
}
#vmenu ul li a{
display:block;
list-style-type:none;
color:#333;
font-size:14px;
font-weight:bold;
text-decoration:none;
height:100%;
}
#vmenu ul li a:hover{
display:block;
color:#FF3;
font-size:14px;
font-weight:bold;
text-decoration:none;
background-color:#333;
height:100%;
border-top:#C00 solid 3px;
}
</style>
</head>
<body>
<div id=”vmenu”>
<ul>
<li><a href=”#”>Home</a></li>
<li><a href=”#”>About us</a></li>
<li><a href=”#”>Contact us</a>
<li> <a href=”#”>Photos</a></li>
</ul>
</div>
</body>
</html>

Output:

Simply awesome, isn’t ? Now try yourself by modifying the above code and create some more design. :)
Happy Designing !!

No comments:

Post a Comment