63 lines
1.3 KiB
HTML
63 lines
1.3 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>css</title>
|
|
<link rel="stylesheet" href="./index.css">
|
|
<style>
|
|
*
|
|
p {
|
|
color: blue;
|
|
}
|
|
h2 {
|
|
color: green;
|
|
}
|
|
#test {
|
|
color: hotpink;
|
|
}
|
|
|
|
/* .aaa li:nth-child(odd){
|
|
color: hotpink;
|
|
} */
|
|
|
|
/* .aaa li:last-child{
|
|
color: hotpink;
|
|
} */
|
|
|
|
/* .aaa li:first-child{
|
|
color: hotpink;
|
|
} */
|
|
.test:hover {
|
|
color: indigo;
|
|
}
|
|
.name:focus {
|
|
width: 300px;
|
|
}
|
|
.ceshi::before{
|
|
content: "这是before";
|
|
}
|
|
.ceshi::after{
|
|
content: "这是after";
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p style="color: yellow;">测试</p>
|
|
<h2 class="test">顶顶顶</h2>
|
|
<h2>顶顶顶</h2>
|
|
<ul class="aaa">
|
|
<li>1111</li>
|
|
<li>2222</li>
|
|
<li>3333</li>
|
|
<li>4444</li>
|
|
<li>5555</li>
|
|
<li>6666</li>
|
|
</ul>
|
|
|
|
<input class="name" type="text" placeholder="输入账户">
|
|
|
|
<div class="ceshi">测试</div>
|
|
</body>
|
|
</html> |