您的位置:首页 > Web前端 > CSS

css实现左右横线中间文字效果

2018-03-16 11:43 531 查看

样式

.title {
display: table;
width: 100%;
line-height: 32px;
background-color: #fff;
white-space: nowrap;
border-spacing: .2rem 0;
}

.title:before,
.title:after {
display: table-cell;
content: '';
width: 50%;
background: -webkit-linear-gradient(#eee, #eee) repeat-x left center;
background: linear-gradient(#eee, #eee) repeat-x left center;
background-size: 0.1rem 0.1rem;
}


效果图

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: