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

div垂直居中的方法

程序员文章站 2022-03-02 19:00:13
...

div 垂直居中

html:
<div class="box">
	<div></div>
</div>
css:
/* 方法一 */
.box{
	width:200px;
	height:200px;
	background: #ff6699;
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	margin:auto;	
}
/* 方法二*/
.box{
	width:200px;
    height: 200px;
    background:green;
    position: absolute;
    margin-left:-100px;
    magin-top:-100px;
}
/* 方法三 */
/* 父级容器指定高度 */
.box{
	display:flex;
	justify-content:center;
	align-items:center;
	height:600px;
}
.box>div{
	width:200px;
	height:200px;
	background:green;
}
/* 方法四*/
.box{
	width:200px;
	height:200px;
	position:absolute;
	background:green;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
}