Files
front-end-example/02-css-layout/07-selectors-and-pseudo-classes/starter.html
2026-03-12 22:56:33 +08:00

42 lines
837 B
HTML

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>组合选择器与伪类</title>
<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">
<a href="#">首页</a>
<a href="#">课程</a>
<a href="#">练习</a>
</nav>
<section class="list">
<p>学习建议</p>
<ul>
<li class="li">先学结构</li>
<li>再学布局</li>
<li>最后学交互</li>
</ul>
</section>
</body>
</html>