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

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

posted @ 2016-10-29 10:17  给我一颗西柚  阅读(203)  评论(0编辑  收藏  举报