利用::before在文字前增加虚线

在这里插入图片描述

<p class="content">选择靠谱的驾校,货比三家。不要一味的追求低价,要从驾校规模、训练场地、驾校教练、收费是否合理等方面综合考虑</p>
.content{
	padding: 12px 0;
    position: relative;
    line-height:25px;
}

.content::before {
    position: absolute;
    content: '';
    border-left: 1px dashed #53a2ff;
    left: -25px;
    top: 5px;
    height: calc(100% - 10px);
}

猜你喜欢

转载自blog.csdn.net/Ariel_201311/article/details/87879965
今日推荐