设置元素居中(前端面试题)

水平居中

行内元素
设置text-align:center
块级元素
1.先定义一个宽高,再根据margin的左右移动来居中
2.使用绝对定位的四个属性来居中且margin:auto;
3.使用绝对定位,然后设置left top的值为50%,在使用
transform:translate(-50%,-50%);
4.需要剧中的元素设置为display:inline-block;然后其父元素设置为text-aligin:center;
5.通过设置浮动
6.设置弹性布局
display:flex;
justify-content:center

水平垂直居中

1.弹性布局,为父元素设置
			display:flex;
		  justify-content:center;
		  align-items:center;
2.position定位
		父元素设为fixed,上下左右都为0,margin设置为auto。子元素设为fixed,上下左右都为0,margin设置为auto。
position: fixed;
		top: 0;
		right: 0;
		left: 0;
		bottom: 0;
		margin: auto;
3.使用绝对定位

```html
/*此方法是在给定宽高的情况下;*/
	.one{
		width: 200px;
		height: 200px;
		background-color: lightblue;
		position: absolute;
		left: 50%;
		top: 50%;
		/*margin: -100px 0 0 -100px;*/
		transform:translate(-50%,-50%);
	}
	4.父元素设置display:relative,子元素设置display:absolute;上下左右都为0,margin设置auto
	

```html
<!DOCTYPE html>
<html>
<head>
	<title></title>
</head>

<body>
<div class="one">
	<div class="two">
		
	</div>
</div>
</body>
<style type="text/css">
	
	.one{
		width: 200px;
		height: 200px;
		background-color: lightblue;
		position: relative;
		
	}
	.two{
		width: 100px;
		height: 100px;
		background-color: red;
		position: absolute;
		top: 0;
		right: 0;
		left: 0;
		bottom: 0;
		margin: auto;
	}
</style>
</html>
5.父元素设置display:flex;子元素margin:auto
<!DOCTYPE html>
<html>
<head>
	<title></title>
</head>

<body>
<div class="one">
	<div class="two">
		
	</div>
</div>
</body>
<style type="text/css">
	
	.one{
     
     
		width: 200px;
		height: 200px;
		background-color: lightblue;
		

		display: flex;
		
	}
	.two{
     
     
		width: 100px;
		height: 100px;
		background-color: red;
		
		margin: auto;
	}
</style>
</html>

猜你喜欢

转载自blog.csdn.net/weixin_49549509/article/details/107774989
今日推荐