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

Posted 给我一颗西柚

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了简单的选中效果 (适用于初学者)相关的知识,希望对你有一定的参考价值。

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

以上是关于简单的选中效果 (适用于初学者)的主要内容,如果未能解决你的问题,请参考以下文章

5个适用于初学者的有用数据分析表达式(DAX)函数

如何使用 Phonegap 插件(适用于 Android)向 API 发出简单的 json 发布请求?

适用于PHP初学者的学习线路和建议

《适用于初学者的 Python》

《适用于初学者的 Python》

Mybatis适用于初学者