蓝色圆角水平导航菜单(示例代码)

(示例图片)

(index.html页面)

、<!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>蓝色圆角水平导航菜单 by www.865171.cn</title>
<link href="index_files/style.css" rel="stylesheet" type="text/css">
</head><body>
<div id="menu">
 <ul>
  <li><a href="http://www.865171.cn/css-menu/" class="current"><span>首页</span></a></li>
  <li><a href="http://www.865171.cn/css-menu/"><span>www.865171.cn</span></a></li>
  <li><a href="http://www.865171.cn/css-menu/"><span>更多CSS菜单</span></a></li>
 </ul>
</div>
</body></html>

(style.css页面)

*{
 margin:0;
 padding:0;
}
body{
 background:#fff;
 color:#666;
 font:12px/18px Tahoma, Arial, Helvetica, sans-serif;
}
#menu{
 width:100%;
 margin:15px;
}
#menu ul{
 list-style:none;
}
#menu li{
 list-style:none;
 display:block;
 float:left;
 margin:0 2px;
}
#menu li a{
 display:block;
 float:left;
 height:66px;
 color:#fff;
 text-transform:uppercase;
 font-size:11px;
 font-weight:bold;
 background:url(images/menu_009_l.jpg) no-repeat left;
 line-height:66px;
 padding:0 0 0 9px;
 text-decoration:none;
}
#menu li a span{
 display:block;
 float:left;
 background:url(images/menu_009_r.jpg) no-repeat right;
 height:66px;
 color:#d2eeff;
 line-height:66px;
 padding:0 18px 0 8px;
}
#menu li a:hover{
 display:block;
 float:left;
 background:url(images/menu_009_h_l.jpg) no-repeat left;
 height:66px;
}
#menu li a:hover span{
 display:block;
 float:left;
 background:url(images/menu_009_h_r.jpg) no-repeat right;
 color:#fff;
 height:66px;
}
#menu li a.current{
 display:block;
 float:left;
 height:66px;
 color:#fff;
 text-transform:uppercase;
 font-size:11px;
 font-weight:bold;
 background:url(images/menu_009_h_l.jpg) no-repeat left;
 line-height:66px;
 padding:0 0 0 9px;
 text-decoration:none;
}
#menu li a.current span{
 display:block;
 float:left;
 background:url(images/menu_009_h_r.jpg) no-repeat right;
 height:66px;
 color:#fff;
 line-height:66px;
 padding:0 18px 0 8px;
}

 

posted on 2011-11-14 15:43  李兰  阅读(284)  评论(0编辑  收藏  举报

导航