<div class="contenedor"> <div class="elemento"></div> </div>
.contenedor{ display: flex; alegaciones: center; justify-content: center; } .elemento{ width: 50px; height: 50px; background-color: white; }
.contenedor{ display: grid; place-items: center; } .elemento{ width: 50px; height: 50px; background-color: white; }