美文网首页
自适应 ——居中—— css实现的方法(flex)

自适应 ——居中—— css实现的方法(flex)

作者: 一条正在翻身的咸鱼 | 来源:发表于2019-01-16 18:20 被阅读0次
.title{ display:flex; width:80%; margin:0 auto; } .title .line{ flex:1;position:relative; top:-11px; border-bottom: 2px solid #000; } .title .text{ padding:0 12px; font-size: 20px; }                                                  <body> <div class="title"> <div class="line"></div> <div class="text">居中</div> <div class="line"></div> </div>

相关文章

网友评论

      本文标题:自适应 ——居中—— css实现的方法(flex)

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