首页 > 网站 > WEB开发 > 正文

效果非常不错的DIV+CSS布局的网页导航

2024-04-27 13:57:25
字体:
来源:转载
供稿:网友

<!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=gb2312" />
<title>www.vevb.com展示特效</title>
<style type="text/CSS">
* {
 font-size:13px;
 font-weight:800;
 text-decoration:none;
 margin:0;
 padding:0;
}
body {
 background:#ccc;
}
#menu {
 list-style-type: none;
 border:1px solid #fff;
 margin:50px auto;
 width:770px;
 height:30px;
 overflow:hidden;
 background:#000 url(/upfiles/20070619/20070619022816_vevb_com_b.png) 0 0 repeat-x;
}
#menu li {
 border-right:1px solid #fff;
 float:left;
}
#menu li a {
 display:block;
 text-align:center;
 color:#fff;
 line-height:30px;
 padding:0 10px;
}
#menu li a:hover,#menu li.current {
 background:#fff url(/upfiles/20070619/20070619022807_vevb_com_a.png) 0 0 repeat-x;
}

</style>
</head>
<body>
<ul id="menu">
 <li class="current"><a href="http://www.vevb.com" title="">vevb.Com首页</a></li>
 <li><a href="http://www.vevb.com/developer.asp" title="">网络编程 </a></li>
 <li><a href="http://www.vevb.com/zhanzhang.asp" title="">站长之家</a></li>
 <li><a href="http://www.vevb.com/web.asp" title="">网页制作</a></li>
 <li><a href="http://www.vevb.com/photo.asp" title="">图形图象</a></li>
 <li><a href="http://www.vevb.com/system.asp" title="">操作系统</a></li>
</ul>
</body>
</html>


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表