常用的css盒子水平垂直居中

一、

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

二、

{
	position:absolute;
	left:50%;
	top:50%;
	transform:translate(-50%,-50%);
}

三、

{
 display:flex;
 justify-content:center;
 align-item:center;
}

*注: 还有 display:table-cell 从来没用过;不做记录 *

猜你喜欢

转载自blog.csdn.net/weixin_42698255/article/details/106203797