MÁS
MANUALES
    Css

  • Html:
    <div class="contenedor">
       <div class="elemento"></div>
    </div>
    

    Flex:
    .contenedor{
       display: flex;
       alegaciones: center;
       justify-content: center;
    }
    
    .elemento{
       width: 50px;
       height: 50px;
       background-color: white;
    }
    

    Grid:
    .contenedor{
       display: grid;
       place-items: center;
    }
    
    .elemento{
       width: 50px;
       height: 50px;
       background-color: white;
    }
    

    Resultado:
    Centrar elementos de un contenedor