效果:
代码:
html:
<p>OR</p>
css:
p{
text-align:center;
position:relative;
}
p::before{
content:'';
width:45%;
height:1px;
background:#000;
position:absolute;
left:10px;
top:50%;
}
p::after{
content:'';
width:45%;
height:1px;
background:#000;
position:absolute;
right:10px;
top:50%;
}