好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

CSS实现子元素div水平垂直居中的示例

div基本布局

<div class=" ;m  ai n">
   <div class=" center "></div>
  </div>

css样式

1. 配合定位与m arg in:auto

父元素加相对定位,子元素加绝对定位

 .main{
    width: 300px;
    h ei ght: 300px;
    background-color:  red ;
    pos IT ion: relative;
   }
   .center{
    width: 100px;
    height: 100px;
    background-color: skyblue;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    mar gin : auto;
   } 

2. 利用 flex布局,设置水平与竖直 方向 的内容居中。

 .main{
    width: 300px;
    height: 300px;
    background-color: red;
    dis play : flex;
    justify-content: center;
    align -i tems: center;
   }
   .center{
    width: 100px;
    height: 100px;
    background-color: greenyellow;
   } 

3.利用position:absolute与transform

:这里需要记住的是transform中translate使用百分比时相对的是自己的长 宽 ,不是父 盒子 的。

 .main{
     width: 300px;
     height: 300px;
     background-color: red;
     position: relative;
    }
    .center{
     width: 100px;
     height: 100px;
     background-color: pink;
     position: absolute;
     left: 50%;
     top: 50%;
     transform: trans latex (-50%) translateY(-50%);
    } 

4.定位 与负margin配合

只适合子盒子长宽固定的情况

 .main{
     width: 300px;
     height: 300px;
     background-color: red;
     position: relative;
    }
    .center{
     width: 100px;
     height: 100px;
     background-color: pink;
     position: absolute;
     left: 50%;
     top: 50%;
     margin-left: -50px;
     margin -t op: -50px;
    } 

5.display:table-cell

display:table-cell;与vert ical -align:middle 的作用是让子盒子在数值方向上居中

margin:auto;则让子盒子在水 平方 向居中,若只想让盒子在某个方向居中,去掉另一个就可以了。

.main{
     width: 300px;
     height: 300px;
     background-color: red;
     display: table-cell;
     vertical-align: middle;
    }
    .center{
     width: 100px;
     height: 100px;
     background-color:  # 000;
     margin: auto;
    }

到此这篇关于CSS实现子元素div水平垂直居中的示例的 文章 就介绍到这了,更多相关CSS 子元素div水平垂直居中内容请搜索以前的文章或继续浏览下面的相关文章,希望大家以后多多支持!

总结

以上是 为你收集整理的 CSS实现子元素div水平垂直居中的示例 全部内容,希望文章能够帮你解决 CSS实现子元素div水平垂直居中的示例 所遇到的问题。

如果觉得 网站内容还不错, 推荐好友。

查看更多关于CSS实现子元素div水平垂直居中的示例的详细内容...

  阅读:18次