Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

229
Views
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 answers
Answer question

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 Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!