美文网首页
使用before、after给文字前后添加横线

使用before、after给文字前后添加横线

作者: 奋斗的小小小兔子 | 来源:发表于2018-09-30 11:57 被阅读4次

    使用before、after给文字前后添加横线

     <div class="reward-title">荣誉资质</div>
    

    css横线居中

    .reward-title {
        font-size: 24px;
        font-weight: 400;
        padding-bottom: 52px;
    }
    
    .reward-title:before {
        content: '';
        width: 80px;
        height: 1px;
        border-bottom: 1px solid #ccc;
        display: inline-block;
        margin-right: 24px;
        margin-bottom: 10px;
    }
    .reward-title:after {
        content: '';
        width: 80px;
        height: 1px;
        border-bottom: 1px solid #ccc;
        display: inline-block;
        margin-left: 24px;
        margin-bottom: 10px;
    }
    
    

    demo地址

    示例图片

    相关文章

      网友评论

          本文标题:使用before、after给文字前后添加横线

          本文链接:https://www.haomeiwen.com/subject/rqcwoftx.html