当前位置:编程学习 > JS >>

CSS 竖排背景渐变的菜单

CSS 竖排背景渐变的菜单,具备高光效果。和以前的一款竖向菜单差不多,这一款使用了背景图片,外观更好看一些,请顺着代码找到背景图地址并下载。
答案:<!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>
<title>CSS 竖排背景渐变的菜单</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<style>
#navcontainer { margin-left: 30px; }
#navcontainer ul
{
margin: 0;
padding: 0;
list-style-type: none;
font-family: verdana, arial, Helvetica, sans-serif;
}

#navcontainer li { margin: 0; }

#navcontainer a
{
display: block;
padding: 5px 10px;
width: 140px;
color: #000;
background-color: #ADC1AD;
text-decoration: none;
border-top: 1px solid #fff;
border-left: 1px solid #fff;
border-bottom: 1px solid #333;
border-right: 1px solid #333;
font-weight: bold;
font-size: .8em;
background-image: url(http://www.zzzyk.com/jscss/demoimg/200905/vertical06.jpg);
background-repeat: no-repeat;
background-position: 0 0;
}

#navcontainer a:hover
{
color: #000;
background-color: #889E88;
text-decoration: none;
border-top: 1px solid #333;
border-left: 1px solid #333;
border-bottom: 1px solid #fff;
border-right: 1px solid #fff;
background-image: url(http://www.zzzyk.com/jscss/demoimg/200905/vertical06a.jpg);
background-repeat: no-repeat;
background-position: 0 0;
}

#navcontainer ul ul li { margin: 0; }
#navcontainer ul ul a
{
display: block;
padding: 5px 5px 5px 30px;
width: 125px;
color: #000;
background-color: #C5D8C5;
text-decoration: none;
font-weight: normal;
}
#navcontainer ul ul a:hover
{
color: #000;
background-color: #889E88;
text-decoration: none;
}
</style>
</head>
<body>
<div id="navcontainer">
<ul id="navlist">
<li id="active"><a href="/" id="current">站长资源库</a> 
<ul id="subnavlist">
<li id="subactive"><a href="/jscss/" id="subcurrent">网页特效</a></li>
<li><a href="/jscss/">菜单导航</a></li>
<li><a href="/jscss/">层和布局</a></li>
<li><a href="/jscss/">表单按钮</a></li>
</ul>

</li>
<li><a href="/">源码下载</a></li>
<li><a href="/jscss/">最新更新</a></li>
<li><a href="/jscss/">下载排行</a></li>
</ul>
</div>
</body>
</html>

上一个:纯CSS实现漂亮的圆角边界菜单
下一个:JS+CSS简易树状菜单Tree

CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,