59 lines
1.2 KiB
HTML
59 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
<style>
|
|
::selection {
|
|
background: red;
|
|
color: #fff;
|
|
}
|
|
.box_1 {
|
|
width: 100px;
|
|
height: 100px;
|
|
background: yellowgreen;
|
|
position: relative;
|
|
}
|
|
p {
|
|
position: relative;
|
|
}
|
|
.box_1::after,
|
|
p::after {
|
|
content: '';
|
|
height: 1px;
|
|
background-color: #8d8d8d;
|
|
width: 100%;
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
}
|
|
.box_1 + div + div {
|
|
color: red;
|
|
}
|
|
a[href*="baidu"] {
|
|
color: red;
|
|
}
|
|
|
|
a[href*="xxx"] {
|
|
color: yellow;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="main">
|
|
<div class="box_1"></div>
|
|
<div>22222</div>
|
|
<div>44444</div>
|
|
|
|
<p>wdf</p>
|
|
<a href="www.baidu.com">1</a>
|
|
<a href="www.xxx.com">2</a>
|
|
|
|
|
|
</div>
|
|
|
|
</body>
|
|
</html> |