加入收藏 | 设为首页 | 会员中心 | 我要投稿 宁德站长网 (https://www.0593zz.com/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 运营中心 > 网站设计 > 教程 > 正文

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

发布时间:2016-11-04 14:32:25 所属栏目:教程 来源:站长网
导读:!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: 20

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

(编辑:宁德站长网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    热点阅读