左右下划线,中间文字

H5 方式:

<!--文字说明-->
                <div class="textBox">
                    <div class="lineL"></div>
                    <div class="text">还有<b>2</b>颗星就可以获得酒票啦!</div>
                    <div class="lineR"></div>
                  </div>


<!--css样式-->

/*文字说明*/
.textBox{
    width: 100%;
    height:35px;
    position:absolute; 
    top: 88%;
    left: 15%;
    color: #333;
    letter-spacing: 1px;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    font-size: 13px;
}
.textBox .lineL{
    height: 1px;
    width: 30px;
    background: #C0C0C0;
}
.textBox .lineR{
    height: 1px;
    width: 30px;
    background: #C0C0C0;
}
.text{
    margin: 0 5px;
}
.text b{
    color: #C50013;
    -webkit-text-stroke: 1px #C50013;
    padding: 0 3px;
}

 


 

posted @ 2018-04-07 16:10  春风得意之时  阅读(306)  评论(0编辑  收藏  举报