CSS

CSS盒子居中的几种方式总结

Posted by deft on May 11, 2020

CSS盒子常用居中方式

第一种: position: absolute配合定位与margin:auto

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
    .fa {
        width: 100px;
        height: 100px;
        border: 1px solid #000000;
        position: relative;
    }

    .son {
        width: 40px;
        height: 40px;
        background-color: antiquewhite;
        position: absolute;
        margin: auto;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }  

第二种: 利用position:absolute与transform实现居中

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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
	.fa {
		width: 100px;
		height: 100px;
		border: 1px solid #000000;
		position: relative;
	}
	.son {
		width: 40px;
		height: 40px;
		background-color: antiquewhite;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translateX(-50%) translateY(-50%);
	}  

第三种:利用flex布局

(flex布局,设置水平与竖直方向的内容居中。)

1
2
3
4
5
6
7
8
9
10
11
12
13
	.fa {
		width: 100px;
		height: 100px;
		border: 1px solid #000000;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.son {
		width: 40px;
		height: 40px;
		background-color: antiquewhite;
	}  

第四种:display:table-cell

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

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

1
2
3
4
5
6
7
8
9
10
11
12
13
	.fa {
		width: 100px;
		height: 100px;
		border: 1px solid #000000;
		display: table-cell;
		vertical-align:middle;
	}
	.son {
		width: 40px;
		height: 40px;
		background-color: antiquewhite;
		margin: auto;
	}  

第五种: position:absolute负margin配合

(这种方法只适合子盒子长宽固定的情况;)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
	.fa {
		width: 100px;
		height: 100px;
		border: 1px solid #000000;
		position: relative;
	}
	.son {
		width: 40px;
		height: 40px;
		background-color: antiquewhite;
		position: absolute;
		left: 50%;
		top: 50%;
		margin-top: -20px;	/* 子盒子高度一半 */
		margin-left: -20px; /*	子盒子宽度一半 */
	}  

第六种: display:inline-block

text-align:center 让子盒子水平居中,

line-height:500px 与 子盒子的vertical-align:middel共同作用使子盒子垂直居中。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
	.fa {
		width: 100px;
		height: 100px;
		border: 1px solid #000000;
		line-height: 100px;  /* 设置这里垂直居中 */
		text-align:center;	/* 设置这里水平居中 */
	}
	.son {
		width: 40px;
		height: 40px;
		background-color: antiquewhite;
		display:inline-block;
		vertical-align:middle;
		line-height:1rem;
		color:white;
	}