css实现标题左右横线


最近用到了记录一下
页面
<div class="subtitle">
                    马上邀请好友得奖励
                </div>

  

样式
.subtitle {
              position: relative;
              font-size: .24rem;
              color: #999999;
              height: 45px;
              line-height: 45px;
              text-align: center;
            }
            .subtitle:before {
              content: "";
              position: absolute;
              width: 30%;
              height: 1px;
              top: 50%;
              background-color: #ededed;
              left: 2%;
            }
            .subtitle:after {
              content: "";
              position: absolute;
              width: 30%;
              height: 1px;
              top: 50%;
              background-color: #ededed;
              right: 2%;
            }

  


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM