2 Star 12 Fork 5

shuiruohanyu/gao-web

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
11_css选择器.html 1.35 KB
一键复制 编辑 原始数据 按行查看 历史
shuiruohanyu 提交于 2024-12-07 16:37 . css选择器
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>11_css选择器</title>
<style>
/* 标签选择器一般设置一些通用样式 */
*, html, body {
margin: 0;
padding: 0
}
a {
text-decoration: none;
}
ul, li {
list-style: none;
}
#title {
color: red
}
/* css权重 当寻找路径越精确 权重越高 id选择器 最高 */
.container .title {
font-size: 30px;
color: blue;
}
.title {
color: pink;
}
#title:hover {
color: blue;
font-weight: bolder;
}
.btn {
background-color: brown;
color: white;
}
.btn:hover {
font-size: 20px;
}
.btn:active {
background-color: rgb(104, 148, 167);
}
</style>
</head>
<body>
<div class="container">
<div>
<span class="title">第二层级</span>
</div>
<span id="title" class="title">第一层级</span>
</div>
<ul>
<li>123</li>
<li>456</li>
<li>789</li>
</ul>
<a href="">新浪</a>
<span class="title">456</span>
<span>789</span>
<button class="btn">测试悬停和激活</button>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/shuiruohanyu/gao-web.git
git@gitee.com:shuiruohanyu/gao-web.git
shuiruohanyu
gao-web
gao-web
main

搜索帮助