寻她模板站 ┃ 精美源于细节,细节造就成功。
繁体中文    广告服务
百度搜藏    加入收藏
业务咨询
您的位置: 首页 >> 网站建设教程 >> 一款DIV+CSS导航条效果
一款DIV+CSS导航条效果
更新时间:2008-07-17 09:58:28  作者:admin  来源:互联网  浏览次数:19  文字大小:【】【】【
简介:运行代码框<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 ...
    

运行代码框

[Ctrl+A 全部选择 提示:你可先修改部分代码,再按运行]

CSS文件:

/*频道链接样式*/
.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(http://www.rrmea.cn/skin/Blue/arrow2.gif) no-repeat left; padding-left:10px; color:#457a8b; font-size:14px; font-weight:bold; }
.channel a:link { background:url(http://www.rrmea.cn/skin/Blue/arrow2.gif) no-repeat left; padding-left:10px; color:#457a8b; }
.channel a:visited { background:url(http://www.rrmea.cn/skin/Blue/arrow2.gif) no-repeat left; padding-left:10px; color:#457a8b; }
.channel a:hover { background:url(http://www.rrmea.cn/skin/Blue/arrow1.gif) no-repeat left; padding-left:10px; color:#78b4c7; }
.channel a:active { background:url(http://www.rrmea.cn/skin/Blue/arrow1.gif) no-repeat left; padding-left:10px; color:#78b4c7; }

DIV文件:

<div class="channel">
<UL>
<LI><A title=文化频道 href="http://www.rrmea.cn/Culture">文化频道</A></LI>
<LI><A title=音乐频道 href="http://www.qiangzu.com/music">音乐</A></LI>
<LI><A title=专题 href="http://www.rrmea.cn/Topic">专题</A></LI>
<LI><A title=博客 href="http://www.qiangzu.com/bbs/bokeindex.asp">博客</A></LI>
<LI><A title=尔玛论坛 href="http://www.qiangzu.com/bbs/index.asp">尔玛论坛</A></LI></UL></div>