This commit is contained in:
rou
2026-03-12 22:56:33 +08:00
parent 4495ae0e28
commit 710852d8d0
9 changed files with 425 additions and 11 deletions

View File

@@ -4,7 +4,23 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>组合选择器与伪类</title>
<link rel="stylesheet" href="./starter.css" />
<style>
body{
padding: 30px 30px;
}
a{
text-decoration: none;
color: rgb(87, 81, 81);
font-weight: 700;
margin-right: 20px;
}
.li{
color: rgb(167, 113, 13);
font-weight: 700;
}
</style>
</head>
<body>
<nav class="menu">
@@ -16,7 +32,7 @@
<section class="list">
<p>学习建议</p>
<ul>
<li>先学结构</li>
<li class="li">先学结构</li>
<li>再学布局</li>
<li>最后学交互</li>
</ul>