1 回答
TA贡献1893条经验 获得超10个赞
试试下面这个,看看是不是你想要的
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.title{
text-align: center;
overflow: hidden;
}
.title span{
position: relative;
display: inline-block;
}
.title span::before{
content: '';
position: absolute;
top: 50%;
width: 1000px;
height: 1px;
left: 100%;
background-color: #333;
}
.title span::after{
content: '';
position: absolute;
top: 50%;
right: 100%;
width: 1000px;
height: 1px;
background-color: #333;
}
</style>
</head>
<body>
<div class="title"><span>测试文字</span></div>
</body>
</html>
添加回答
举报