温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

怎么用css实现蓝色圆角效果水平导航菜单

发布时间:2021-08-04 20:39:46 来源:亿速云 阅读:138 作者:chen 栏目:web开发

本篇内容主要讲解“怎么用css实现蓝色圆角效果水平导航菜单”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“怎么用css实现蓝色圆角效果水平导航菜单”吧!

这是一款可爱的蓝色圆角水平导航菜单,用到几张背景图片,我觉得这款菜单挺实用,特别是用在个人博客中非常合适。在兼容性方面做的也很好,几乎兼容所有的浏览器。

运行效果截图如下:

怎么用css实现蓝色圆角效果水平导航菜单

在线演示地址如下:

http://demo.jb51.net/js/2015/css-blue-cicle-style-nav-menu-codes/

具体代码如下:

代码如下:

<!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>

到此,相信大家对“怎么用css实现蓝色圆角效果水平导航菜单”有了更深的了解,不妨来实际操作一番吧!这里是亿速云网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

css
AI