Establecer elementos que se centrarán (preguntas de la entrevista frontal)

Centrar horizontalmente

Elementos en línea
Establecer alineación de texto: elemento central
a nivel de bloque
1. Primero defina un ancho y una altura, y luego centre de acuerdo con el movimiento izquierdo y derecho del margen
2. Utilice las cuatro propiedades de posicionamiento absoluto al centro y margen: auto;
3. Use posicionamiento absoluto, luego establezca el valor de la parte superior izquierda en 50% y use
transform: translate (-50%, - 50%);
4.Los elementos de la obra deben configurarse para mostrar: inline-block; entonces su elemento padre se establece en text-aligin: center;
5. Configurando float
6. Configurando el diseño flexible
display: flex;
justify-content: center

Centrar horizontal y verticalmente

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>

Supongo que te gusta

Origin blog.csdn.net/weixin_49549509/article/details/107774989
Recomendado
Clasificación