Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

233
Visualizações
What is the easiest and the fastest way to center a div?

Can anyone suggest me the fastest way to center a div in CSS ? Thank you !

<div class="wrap">
    <div class="container">
        <p>some content</p>
    </div>
</div>
about 4 years ago · Juan Pablo Isaza
1 Respostas
Responde à pergunta

0

Example 1: Center div using margin-auto

https://i8pn0.csb.app/margin-auto-example.html

<div class="container">
  <div class="child"></div>
</div>
.container {
  width: 350px;
  height: 200px;
  outline: dashed 1px black;
}

.child {
  width: 50px;
  height: 50px;
  background-color: red;
  /* Center horizontally*/
  margin: 0 auto;
}

Example 2: Center a Div Horizontally using display: flex

https://i8pn0.csb.app/flex-x.html

<div class="container">
  <div class="child"></div>
</div>
.container {
  margin: 25px;
  width: 350px;
  height: 200px;
  /* Center child horizontally*/
  display: flex;
  justify-content: center;
}

.child {
  width: 50px;
  height: 50px;
  background-color: red;
}

Example 3: Center a Div Vertically using display: flex

https://i8pn0.csb.app/flex-y.html

<div class="container">
  <div class="child"></div>
</div>
.container {
  margin: 25px;
  width: 350px;
  height: 200px;
  outline: dashed 1px black;
  /* Center vertically */
  display: flex;
  align-items: center;
}

.child {
  width: 50px;
  height: 50px;
  background-color: red;
}

These examples are not the only way but the easiest, and some of them only work on modern browsers.

about 4 years ago · Juan Pablo Isaza Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda