Files
2024-09-27 02:06:13 +08:00

73 lines
1.5 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>选择器</title>
<style>
.left span {
color: red;
}
.menu li:first-child,
.menu li:last-child {
color: green;
}
.menu li:nth-child(3n) {
color: royalblue;
}
.test>p {
color: bisque;
}
.test h2 p {
color: blue;
}
.right:hover {
background: red;
}
</style>
</head>
<body>
<div class="header">
<div class="center">
<div class="left">
<img src="" alt="">
<span>头部1</span>
<span>头部2</span>
</div>
<div class="test">
<p>1</p>
<h2>
<p>3</p>
</h2>
</div>
<ul class="menu">
<li>标题1</li>
<li>标题2</li>
<li>标题3</li>
<li>标题4</li>
<li>标题5</li>
<li>标题6</li>
<li>标题7</li>
<li>标题8</li>
<li>标题9</li>
<li>标题10</li>
</ul>
<div class="right">登录 | 注册</div>
</div>
</div>
</body>
</html>