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

118
Views
Center one div and set one div to right inside a container

So i have a container that is flex, and I want to add 2 more div inside it so 1 is centered and one is on the right edge. Can someone pls help. the container must be flex.

about 4 years ago · Santiago Trujillo
1 answers
Answer question

0

You can add an empty div inside of parent container at the beginning so you can then use justify-content: space-between on the parent container. Check the code below:

.parent {
  display: flex;
  border: 1px solid green;
  width: 100%;
  justify-content: space-between; /* Add this */
}

.child {
  border: 1px solid red;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
<div class="parent">
  <!-- Empty DIV for the sake of justify-content: space-between -->
  <div></div>
  <div class="child">CENTER</div>
  <div class="child">RIGHT</div>
</div>

about 4 years ago · Santiago Trujillo 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!