css实现标题左右横线直接上代码
<div class='title'>快来设置吧</div>
.title {
position: relative;
font-size: 32px;
color: #fff;
height: 45px;
line-height: 45px;
text-align: center;
top: 60px;
}
.
title:before {
content: "";
position: absolute;
width: 28px;
height: 2px;
top: 50%;
background-color: #fff;
left: 32%;
}
.title:after {
content: "";
position: absolute;
width: 28px;
height: 2px;
absolute relativetop: 50%;
background-color: #fff;
right: 32%;
}
效果图

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。