<div class="text">我是测试文本</div>
.text {
position: relative;
text-decoration: none;
display: inline-block;
}
.text::before,
.text::after {
content: '';
position: absolute;
bottom: -2px;
width: 100%;
height: 1px;
left: 0;
background-color: black;
}
.text::before {
top: 50%;
transform: translateY(-50%);
text-decoration: line-through;
}