美文网首页
css实现标题左右横线

css实现标题左右横线

作者: jed_shi | 来源:发表于2019-01-05 13:18 被阅读0次

    直接上代码

    <div class='title'>快来设置吧</div>
    
    .title {
      position: relative;
      font-size: 32px;
      color: #fff;
      height: 45px;
      line-height: 45px;
      text-align: center;
      top: 60px;
    }
    .title:before {
      content: "";
      position: absolute;
      width: 28px;
      height: 2px;
      top: 50%;
      background-color: #fff;
      left: 32%;
    }
    .title:after {
      content: "";
      position: absolute;
      width: 28px;
      height: 2px;
      top: 50%;
      background-color: #fff;
      right: 32%;
    }
    

    效果图

    效果图

    相关文章

      网友评论

          本文标题:css实现标题左右横线

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