欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

实现div居中的方法

程序员文章站 2022-05-01 17:15:49
...

1.position 定位 (元素已知宽高)

.box{
	width: 200px;
	height:200px;
	background-color: darkgrey;
	position: relative;
}
.content{
	width: 100px;
	height: 100px;
	background-color: plum;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -50px; //margin-top减去元素高度的一半
	margin-left: -50px; //margin-left减去元素宽度的一半
}

效果图:
实现div居中的方法
2.position 定位 (元素已知宽高)

//css代码:
.content{
	width: 100px;
	height: 100px;
	background-color: darkorange;
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
//HTML代码:
<div class="box">
	<div class="content"></div>
</div>

效果图:
实现div居中的方法

3.position 定位 (未知元素宽高)

//css代码:
.box{
	width: 200px;
	height:200px;
	background-color: darkgrey;
	position: relative;
}
.content{
	background-color: plum;
	margin: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
}
//HTML代码:
<div class="box">
	<div class="content">2020</div>
</div>

效果图:
实现div居中的方法
4.display:flex 布局实现

//css代码:
.box{
	width: 200px;
	height:200px;
	background-color: darkgrey;
	display: flex;
	justify-content: center;//定义在主轴上的对齐
	align-items: center;//定义在交叉轴上对齐
}
.content{
	width: 100px;
	height: 100px;
	background-color: plum;
}

5.使用css3计算的方式实现居中 calc()

.box{
	width: 200px;
	height:200px;
	background-color: darkgrey;
	position: relative;
}
.content{
	width: 100px;
	height: 100px;
	background-color: plum;
	position: absolute;
	top: calc(50% - 50px); //用calc(),50%减去宽高的一半
	left: calc(50% - 50px);
}