一款DIV+CSS制作的导航条

网络整理 - 07-28
完整的代码如下:

<html>
<head>
<title>一款DIV+CSS制作的导航条</title>
<meta http-equiv=content-Type content="text/html;charset=gb2312">
</head>
<style>
/*频道链接样式*/
.channel { width:350px; margin:12px 0px 0px 175px; height:30px; line-height:30px; text-align:center; }
.channel ul { list-style:none; margin:0px;}
.channel li { float:left; padding-left:8px; }
.channel a { background:url() no-repeat left; padding-left:10px; color:#457a8b; font-size:14px; font-weight:bold; }
.channel a:link { background:url() no-repeat left; padding-left:10px; color:#457a8b; }
.channel a:visited { background:url() no-repeat left; padding-left:10px; color:#457a8b; }
.channel a:hover { background:url() no-repeat left; padding-left:10px; color:#78b4c7; }
.channel a:active { background:url() no-repeat left; padding-left:10px; color:#78b4c7; }
</style>
</head>
<body>
<div class="channel">
<UL>
<LI><A title=文化频道 href="">文化频道</A></LI>
<LI><A title=音乐频道 href="">音乐</A></LI>
<LI><A title=专题 href="">专题</A></LI>
<LI><A title=博客 href="">博客</A></LI>
<LI><A title=尔玛论坛 href="">尔玛论坛</A></LI></UL></div>
</body>
</html>