Hola a todos!
En esta ocasión explicare como pueden centrar un elemento de un div 👩💻
<!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>
<!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>
#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