首页 > 其他 > 详细

div在父元素中的居中问题

时间:2018-01-25 13:35:06      阅读:201      评论:0      收藏:0      [点我收藏+]

方法一:定位方法

 

<div class="parent1">
    <div class="child1">
        content1
    </div>
</div>
.parent1{
    position:relative;
    height:300px;
     width:300px;
}
.child1{
    position:absolute;
  top:0px;
  left:0px;
  right:0px;
  bottom:0px;
  margin:auto;

}

  

 方法二:设置父元素的css为:display:table;z子元素的为:dispaly:table-cell;vertical-align:middle;text-align:center

 

<div class="parent2">
    <div class="child2">
        content2
    </div>
</div>
.parent2{
    display:table;
    height:300px;
     width:300px;
    background:red;
}
.child2{
    display:table-cell;
    vertical-align:middle;
    text-align:center;
    background:green;
    ont-size:16px;

}

  方法三:利用transform

<div class="parent3">
    <div class="child3">
        content3
    </div>
</div>

.parent3{ position: relative; height:300px; width: 300px; background: #FD0C70; } .parent3 .child{ position: absolute; top: 50%; left: 50%; color: #fff; background: green; transform: translate(-50%, -50%); }

  

 

div在父元素中的居中问题

原文:https://www.cnblogs.com/hl2016-10-28/p/8350757.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!