您的位置: 首页 > 生活常识 >

div居中的几种写法(如何居中一个div?position,absolute,flex,百分比)

100次浏览     发布时间:2024-11-14 08:19:21    

水平居中:给div设置一个宽度,然后添加margin:0 auto;属性。

div{
 	width:200px;
 	margin:0 auto;
 }

绝对定位的div居中:

 div {
 	position: absolute;
 	width: 300px;
 	height: 300px;
 	margin: auto;
 	top: 0;
 	left: 0;
 	bottom: 0;
 	right: 0;
 	background-color: pink;	/* 方便看效果 */
 }

水平垂直居中一:

水平垂直居中二:

水平垂直居中三: