::before


1
2
3
4
5
6
7
8
9
10
.list::before {
position: absolute;
left: 15rpx;
right: 15rpx;
bottom: 0;
content: '';
height: 1px;
transform: scaleY(0.5);
background-color:
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>

<head>
<meta charset="UTF-8">
<title></title>
<style>
#box:before {
content: "你好"
}

#box:after {
content: "中国"
}
</style>
</head>

<body>
<div id="box"></div>
</body>

</html>