首页 > Web开发 > 详细

css实现元素居中的几种方法

时间:2021-05-15 00:28:24      阅读:23      评论:0      收藏:0      [点我收藏+]

1. 

.fatherBox{
    width:500px;
    height:500px;
    position:relative;
}
.sonBox{
  width:200px;
  height:200px;
  position:absolute;
  top:0;
  botton:0;
  left:0;
   right:0;
   margin:auto;  
  }

2.

.fatherBox{
    width:500px;
    height:500px;
    position:relative;
 }
.sonBox{
  width:200px;
  height:200px;
  position:absolute;
  top:50%;
  left:50%;
   margin-top:-100px;
   margin-left:-100px;
 }

3.

.fatherBox{
    width:500px;
    height:500px;
    position:relative;
 }
.sonBox{
  position:absolute;
  top:50%;
  left:50%;
   transform:translate(-50%,-50%)
 }

4.

.fatherBox{
    width:500px;
    height:500px;
    display:flex;
    justify-content:center;
    align-items:center;
 }
.sonBox{
  width:200px;
  height:200px;
 }

 

css实现元素居中的几种方法

原文:https://www.cnblogs.com/lxxoflearningconstantly/p/14770364.html

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