涂大仙
<style type="text/css">
p{
text-align: center;
position: relative;
width: 70px;
margin: 0 auto;
height: 20px;
line-height: 20px;
}
p:before,p:after{
content: "";
display: block;
width: 100px;
height: 1px;
background: #000;
position: absolute;
}
p:before{
left: -100px;
top: 10px;
}
P:after{
right: -100px;
top: 10px;
}
</style>
<p>快速登录</p>使用伪元素来实现横线,再用position进行定位