用CSS让DIV上下左右居中的方法

 方法一(varticle-align)

理念

利用表格单元格的居中属性。

步骤

父div外层配置一个div,同时设置为表格元素 (display: table),宽度为100%

父div配置为表格单元格元素 (display: table-cell)

父div配置居中属性(vertical-align: middle),使子div上下居中

子div通过margin配置左右居中(margin-left:auto; margin-right:auto)

例子

* {margin:0;padding:0;box-sizing: border-box;}

.table{display: table;width:100%;}

.father{display: table-cell;vertical-align: middle;}

.son{margin: auto;}

注:表格单元格比较特殊,如果只有一个单元格时,它的宽度默认会占父级(table|tr)宽度的100%;

table默认宽度不会撑开,需要手动配置width:100%;

 方法二(line-height)

理念

当父div的行高等于自身高度时,内部的行内元素会上下居中显示。行内块没有固定高度时也会上下居中显示。通过文本居中属性text-align:center,可以使内部行内元素或行内块元素左右居中显示。

步骤

子div设定为行内块元素(display:inline-block);

父div设置行高(line-height)使子div上下居中

父div设置文本居中(text-align:center)使子div左右居中。

例子

* {margin:0;padding:0;box-sizing: border-box;}

.father{line-height:500px;text-align: center;font-size:0;}

.son{display: inline-block;

/* display: inline-flex;

display: inline-grid;

display: inline-table; */

}

注: 行高如果设置为当前父div的高度(400px)的话,有固定高度的子div并不会居中显示的,问题出在浏览器默认将其当做文本居中的,即把它当做了一段文本(chrome默认font-size:16px;hight:21px)进行居中,没把它当做高度100px进行居中。所以需要对父div的line-height进行调整。以font-size:0(对应的字体高度为0)为例子,则需要line-height增加一个子div的高度(400px + 100px;)。

顺便给大家推荐一个裙,它的前面是 537,中间是631,最后就是 707。想要学习前端的小伙伴可以加入我们一起学习,互相帮助。群里每天晚上都有大神免费直播上课,如果不是想学习的小伙伴就不要加啦。(537631707)

 方法三(绝对定位)

理念利用定位属性(top、left、right、bottom)百分比的模式。若为100%,则代表偏移的长度为父div的高度(宽度)的100%。

步骤

父div标记下定位(position:relative|absolute|fixed);子div绝对定位(position:absolute)

子div上下居中:top:50%;margin-top:-h/2; 或是 bottom:50%;margin-bottom:-h/2;;

子div左右居中: left:50%;margin-left:-w/2 或是 right:50%;margin-right:-w/2;

例子

* {margin:0;padding:0;box-sizing: border-box;}

.father{position: relative;}

.son{position: absolute;bottom:50%;margin-bottom: -50px;left:50%;margin-left: -50px;

}

 方法四(绝对定位)

理念:

定位属性top和bottom(或是left和right)值分别设置为0,但子div有固定高度(宽度),并不能达到上下(左右)间距为0,此时给子div设置margin:auto会使它居中显示。

步骤:

父div标记下定位(position:relative|absolute|fixed|sticky);子div绝对定位(position:absolute)

子div上下居中:top:0;bottom:0;margin-top:auto;margin-bottom:auto

子div左右居中:left:0;right:0;margin-left:auto;margin-right:auto

例子

* {margin:0;padding:0;box-sizing: border-box;}

.father{position: relative;}

.son{position: absolute;top:0;bottom:0;left:0;right:0;margin: auto}

 方法五(flex)

理念

弹性盒子中只要给弹性子元素设置 margin: auto; 可以使得弹性子元素上下左右居中。

例子

* {margin:0;padding:0;box-sizing: border-box;}

.father{display: flex;}

.son{margin: auto}

注:flex存在兼容性问题

 方法六(相对定位)

理念

利用定位属性(top、left、right、bottom)百分比的模式。若为100%,则代表偏移的长度为父div的高度(宽度)的100%。

步骤

父div标记下定位(position:relative|absolute|fixed);子div相对定位(position:relative)

子div上下居中:top:50%;margin-top:-h/2; 或是 bottom:-50%;margin-top:-h/2;;

子div左右居中: left:50%;margin-left:-w/2 或是 right:-50%;margin-left:-w/2;

例子

* {margin:0;padding:0;box-sizing: border-box;}

.father{position: relative;}

.son{position: relative;top:50%;margin-top:-50px;left:50%;margin-left:-50px}

注:

与绝对定位不同的是,定位属性相对的点是自身元素的左上角。(所以bottom是负值,和方法三绝对定位写法有不一样的地方)

如果有同级元素,可能会受到影响。

如果子div是浮动元素,也有居中效果。

结尾

方法二和方法三兼容性要比其它好些。最简单的是弹性盒子。

温馨提示:文章素材来源于网络,版权归原作者所有!

你可能感兴趣的:(用CSS让DIV上下左右居中的方法)