3

Como centrar un elemento de un div

Hola a todos!
En esta ocasión explicare como pueden centrar un elemento de un div 👩‍💻

  1. Tenemos que crear un div con un identificador en mi caso lo llame class = container
<!DOCTYPE html><htmllang="en"><head><metacharset="UTF-8"><metahttp-equiv="X-UA-Compatible"content="IE=edge"><metaname="viewport"content="width=device-width, initial-scale=1.0"><linkrel="stylesheet"href="style.css"><title>Document</title></head><body><divid="container"></div></body></html>
  1. Luego creamos el elemento, en mi caso cree un <p></p>
<!DOCTYPE html><htmllang="en"><head><metacharset="UTF-8"><metahttp-equiv="X-UA-Compatible"content="IE=edge"><metaname="viewport"content="width=device-width, initial-scale=1.0"><linkrel="stylesheet"href="style.css"><title>Document</title></head><body><divid="container"><p>centrame</p></div></body></html>
  1. Continuamos con la creación del .css. En el file agregamos los estilos propios del #containe.
#container{
  background-color:red;
  width:100px;
  height:100px;
}

4 . Finalmente, vamos a centrar el elemento usando Flex

#container{
  background-color:red;
  width:100px;
  height:100px;
  display:flex;
  justify-content:center;
  align-items:center;
}

Resultado

Escribe tu comentario
+ 2