CSS设置标题前颜色小竖条
上效果
那个橙色的小竖条即使实现效果哈, 旁边的黑色是截图没截好的reason
HTML代码
<div class="recomend-list">
<h2>推荐歌单</h2>
</div>
CSS代码
.recomend-list h2 {
position: relative;
font-size: 18px;
text-align: left;
padding-left: 9px;
height: 40px;
line-height: 40px;
}
.recomend-list h2:before {
position: absolute;
content: "";
background-color: #ec8537;
width: 4px;
height: 18px;
left: 0;
top: 50%;
margin-top: -8px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
o得k