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

167
Views
How to ensure that an oddly form block of text is equal in width?
<div>
  <div>Top Text</div>
  <div><span>A</span><span>B</span><span>C</span></div>
</div>

The idea is to have something like:

Top Text
A   B  C

Where Top Text is always lined up with the starting and ending text on the bottom.

about 4 years ago · Santiago Gelvez
1 answers
Answer question

0

In this particular case, flexbox can do the job:

.box {
  display:inline-block; /* fit content */
}

.box > div:last-child {
  display:flex;
  justify-content:space-between;
}
<div class="box">
  <div>Top Text</div>
  <div><span>A</span><span>B</span><span>C</span></div>
</div>

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