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

让一个div居中的3种方式?

程序员文章站 2022-05-02 09:40:24
...

1.相对定位:

.father{
	width:400px;
	height:400px;
	background:black;
	position: relative;
	left: 50%;
	margin-left:-200px;
}	

2.margin

CSS 样式:

 .father{
    		width:400px;
    		height:400px;
    		background:black;
    		margin: 0 auto;
    	}	

3.相对定位与位移:

CSS样式:

.father{
		width:400px;
		height:400px;
		background:black;
		position: relative;
		left: 50%;
		transform: translate(-50%)
	}	
相关标签: 居中