关于元素垂直方向的padding的问题

<!doctype html>
<html lang="en">
 <head>
  <meta charset="UTF-8">
  <meta name="Generator" content="EditPlus®">
  <meta name="Author" content="">
  <meta name="Keywords" content="">
  <meta name="Description" content="">
  <title>Document</title>
  <style type="text/css">

    .line-wrap{
        position: relative;
        text-align:center;
    }
    .line-wrap:after{
        position:absolute;
        left:0;
        top:50%;
        border-top:1px dashed #ddd;
        content:'';
        height:0;
        width:100%;
        z-index:1;
}
.line-wrap .text{
    background-color:red;
    padding:5px;
    position: relative;
    z-index:2;
}

  </style>
 </head>
 <body>
  <div class="line-wrap">
    <span class="text">文字内容</span>
</div>



 </body>
</html>

图片描述

图片描述

阅读 2.4k
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题