开发者社区 问答 正文

以下方式不算垂直水平居中吗?

<div class="wrapper">
    <div class="content"></div>
</div>    
 .wrapper{
         position: relative;
         width: 100px;
         height: 100px;
         background-color: red;
   }
   .content{
       position: absolute;
       left: 50%;
       top: 50%;
       width: 10px;
       height: 10px;
       background-color: green;
   }

展开
收起
a123456678 2016-03-12 10:27:59 1817 分享 版权
1 条回答
写回答
取消 提交回答
  • left :50% 是元素的左边界距离左侧50%而不是元素中线,所以你应该margin-left:-50px;把元素向左偏移元素宽度的一半才是居中

    2019-07-17 19:00:18
    赞同 展开评论
问答地址: