带背景的title

2018-01-24

适当使用:before

Alt text

1
<div class="title">合作伙伴</div>

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*不重要的css*/
.title{
width: 80%;
margin: 0 auto;
color: #444444;
font-size: 2rem;
font-weight: 700;
background: rgba(199,199,199,.5);
}
/*主要的css*/
.title:before{
content: '';
height: 1em;
width: 5px;
display: inline-block;
vertical-align: middle;
margin-right: 0.5em;
background: #444444;
}