博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

亮蓝色水平CSS选项卡菜单

Posted on 2009-08-09 01:34  linFen  阅读(1199)  评论(0编辑  收藏  举报

演示效果截图

亮蓝色水平CSS选项卡菜单

用到的图片


CSS代码

body{background:#fff url(bkg_page.png) repeat-x;padding:0;
margin:0;font-family:'Verdana';font-size:12px;color:#7f8991}
#header{margin:108px 0 0 100px}
#header em{display:none}
#header ul{width:100%;float:left;
padding:0;margin:0;list-style-type:none}
#header li{float:left;padding:0;margin:0;display:inline}
#header li a{display:block;height:46px}
#header li a.home{
background:url(menu_01.png) no-repeat left top;width:52px}
#header li a.homeActive{
background:url(menu_01.png) no-repeat left bottom;width:52px}
#header li a.gallery{
background:url(menu_02.png) no-repeat left top;width:60px}
#header li a.galleryActive{
background:url(menu_02.png) no-repeat left bottom;width:60px}
#header li a.resources{
background:url(menu_03.png) no-repeat left top;width:76px;
margin:0;padding:0}
#header li a.resourcesActive{
background:url(menu_03.png) no-repeat left bottom;width:76px}
#header li a.submit{
background:url(menu_04.png) no-repeat left top;width:97px}
#header li a.submitActive{
background:url(menu_04.png) no-repeat left bottom;width:97px}
#header li a.feed{
background:url(menu_05.png) no-repeat left top;width:68px}
#header li a.feedActive{
background:url(menu_05.png) no-repeat left bottom;width:68px}
#header li a.about{
background:url(menu_06.png) no-repeat left top;width:52px}
#header li a.aboutActive{
background:url(menu_06.png) no-repeat left bottom;width:52px}
#header li a.blog{
background:url(menu_10.png) no-repeat left top;width:51px}
#header li a.blogActive{
background:url(menu_10.png) no-repeat left bottom;width:51px}
#header li a.contact{
background:url(menu_07.png) no-repeat left top;width:64px}
#header li a.contactActive{
background:url(menu_07.png) no-repeat left bottom;width:64px}
#header li a:hover{
background-position:left bottom}

HTML代码

<div style="position:absolute;top:30px;left:10px;
height:70px;overflow:hidden;padding-left:100px;">
<h3>www.865171.cn</h3>
</div>
<div id="header">
<ul>
<li><a class="homeActive" href="http://www.865171.cn/">
<em>home</em></a></li>
<li><a class="gallery" href="http://www.865171.cn/">
<em>gallery entries</em></a></li>
<li><a class="resources" href="http://www.865171.cn/">
<em>resources</em></a></li>
<li><a class="submit" href="http://www.865171.cn/">
<em>submit a site</em></a></li>
<li><a class="feed" href="http://www.865171.cn/">
<em>our feed</em></a></li>
<li><a class="blog" href="http://www.865171.cn/">
<em>blog</em></a></li>
</ul>
</div>