萬盛學電腦網

 萬盛學電腦網 >> 網頁制作 >> DivCSS教程 >> 純css實現藍色圓角效果水平導航菜單代碼

純css實現藍色圓角效果水平導航菜單代碼

         本文實例講述了純css實現藍色圓角效果水平導航菜單代碼。分享給大家供大家參考。具體如下:

         這是一款可愛的藍色圓角水平導航菜單,用到幾張背景圖片,我覺得這款菜單挺實用,特別是用在個人博客中非常合適。在兼容性方面做的也很好,幾乎兼容所有的浏覽器。

運行效果截圖如下:

代碼如下: <!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>藍色圓角水平導航菜單</title>
<style>
*{
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;
}
</style>
</head>
<body>
<div id="menu">
<ul>
<li><a href="#" class="current"><span>首頁</span></a></li>
<li><a href="#"><span>精品腳本下載</span></a></li>
<li><a href="#"><span>網頁模板</span></a></li>
</ul>
</div>
</body>
</html>

 

希望本文所述對大家的div+css網頁設計有所幫助。

copyright © 萬盛學電腦網 all rights reserved