首页 > 其他 > 详细

简单的选中效果 (适用于初学者)

时间:2016-10-29 11:51:39      阅读:184      评论:0      收藏:0      [点我收藏+]

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
li {
float: left;
list-style: none;
width: 150px;
height: 50px;
text-align: center;
background-color: darkgray;
font-size: 30px;
color: white;
padding-top: 20px;

}
a{
text-decoration: none;
color: white;
}

li:hover{
background: skyblue;

}
a:hover{//紫色选中框
color: purple;
}
</style>
</head>
<body>
<ul>
<li><a href="">主页</a></li> //链接自带字体变换颜色
<li><a href="">日志</a></li>
<li><a href="">留言板</a></li>
<li><a href="">相册</a></li>
<li><a href="">关于我</a></li>
</ul>

</body>
</html>

简单的选中效果 (适用于初学者)

原文:http://www.cnblogs.com/shen-xiao-jie/p/6010149.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!