css让div上下左右居中的方法

阅读数:80 评论数:0

跳转到新版页面

分类

html/css/js

正文

假设一个父div(w: 100%;h: 400px)中有一个子div(w:100px;h:100px)。让其上下左右居中

一、vertical-align

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

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

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

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

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

<style>
    * {margin: 0; padding: 0; box-sizing: border-box;}
    .table {display: table; width: 100%;}
    .father {display: table-cell; vertical-align: middle;}
    .son {margin: auto;}
</style>
<body>
    <div class="table" >
        <div class="father" style="width: 100%; height: 400px; border: 1px solid rebeccapurple;">
            <div class="son" style="width: 100px; height: 100px;background: palegreen;"></div>
        </div>
    </div>
</body>

5、备注:

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

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

二、使用line-height属性

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

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

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

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

<style>
    * {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; */
    }
</style>
<body>
    <div class="father" style="width: 100%; height: 400px; border: 1px solid rebeccapurple;">
        <div class="son" style="width: 100px; height: 100px;background: palegreen;"></div>
    </div>
</body>

5、备注:

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

三、使用绝对定位

方法1

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

(1)父div标记下定位(position:relative|absolute|fixed)。

(2)子div绝对定位(position:absolute)。

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

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

<style>
    * {margin: 0; padding: 0; box-sizing: border-box;}
    .father {position: relative;}
    .son {position: absolute;bottom:50%;margin-bottom: -50px;left: 50%;margin-left: -50px;}
</style>
<body>
    <div class="father" style="width: 100%; height: 400px; border: 1px solid rebeccapurple;">
        <div class="son" style="width: 100px; height: 100px;background: palegreen;"></div>
    </div>
</body>

另外还可以把子元素设置为:

子元素:{position: absolute;
bottom:50%;
left: 50%;
transform: translate(-50% -50%);
}

这样就无需关心子元素的宽高,而且transform的兼容性也不错。

方式2

定位属性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。

<style>
    * {margin: 0; padding: 0; box-sizing: border-box;}
    .father {position: relative;}
    .son {position: absolute; top: 0; bottom:0; left: 0; right: 0; margin: auto}
</style>
<body>
    <div class="father" style="width: 100%; height: 400px; border: 1px solid rebeccapurple;">
        <div class="son" style="width: 100px; height: 100px;background: palegreen;"></div>
    </div>
</body>

四、使用flex

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

<style>
    * {margin: 0; padding: 0; box-sizing: border-box;}
    .father {display: flex;}
    .son {margin: auto}
</style>
<body>
    <div class="father" style="width: 100%; height: 400px; border: 1px solid rebeccapurple;">
        <div class="son" style="width: 100px; height: 100px;background: palegreen;"></div>
    </div>
</body>

五、相对定位

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

1、父div标记下定位(position:relative|absolute|fixed)。

2、子div相对定位(position:relative)。

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

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

<style>
    * {margin: 0; padding: 0; box-sizing: border-box;}
    .father {position: relative;}
    .son {position: relative; top:50%;margin-top:-50px;left:50%;margin-left:-50px}
</style>
<body>
    <div class="father" style="width: 100%; height: 400px; border: 1px solid rebeccapurple;">
        <div class="son" style="width: 100px; height: 100px;background: palegreen;"></div>
    </div>
</body>

5、备注:

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

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

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

6、其它

margin赋值可以用2D转换代替。优点是不用计算子div的宽高。

margin-top: -h/2 => transform: translateY(-50%)

margin-bottom: -h/2 => transform: translateY(50%)

margin-left: -h/2 => transform: translateX(-50%)

margin-right: -h/2 => transform: translateX(50%)




相关推荐

一、基本概念 采用flex布局的元素称为flex容器,它的所有子元素称为flex item,容器默认存在两根轴:主轴(main axis)和交叉轴(cross axis)。主轴的开始位置叫做main

一、简介 Flex 布局是轴线布局,只能指定"项目"针对轴线的位置,可以看作是一维布局。Grid 布局则是将容器划分成"行"和"列",产生单元格,然后指定"项目所在"的单元格,可以看作是二维布局。 二

css中写动画时,经常会用到这几个属性。 一、transform 变形效果 transform属性是静态属性,需要配合transition和animation才能展现出动画效果。 正常变换矩阵是$\l

.box1 { position: absolute; left:50%; transform: translateX(-50%); .... } translateX(-50%) 如果是

1、如果是单行文本 行高(line-height)=父级的height 2、对于已知高度的块级元素,可以采用绝对定位 .parent-div { position: relative; } .ch

一、概述 overflow属性用于当一个元素太大而无法适应父级窗口的大小时行为。具体又可以分为: overflow-x 属性规定是否对内容的左/右边缘进行裁剪 - 如果溢出元素内容区域的话。 over

一、概述 background是css简写属性,可有一个或多个值,且可以按任意顺序放置: background: <bg-color> <bg-image> <position/bg-size>

前提是定义了background-image属性,然后用background-attachment

局部作用域 css的规则都是全局的,任何一个组件的样式规则,都对整个页面有效。产生局部作用域的唯一方法,就是使用一个独一无二的class的名字,不会与其他选择器重名,但是当我们

less作为css的一种形式的扩展,它并没有阉割CSS的功能,而是在现有的CSS语法 上,添加了很多额外的功能。 变量 在less中利用@符号进行变量的定义</p