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

162
Views
Jumpy CSS transition in sidebar links text while toggle transition is running

When collapsing, the text adapts to the width of the sidebar progressively which causes a jumpy transition

I would like to know if there is any mechanism to show the text only when it fits 100% in the sidebar and it is not cut in two lines.

I need is the text to appear only after the transition of the collapse has finished.

What I've tried:

-Increasing/decreasing the transition time (too radical, works if I delete the transition but somehow has to be smooth so it's not a valid solution)

.sidebar{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 290px;
    background: #193D4C;
    z-index: 100;
    transition: all 0.5s ease;
}

-Using backface-visibility property. Did not work.

-Using Bootstrap 5 event type shown.bs.collapse like this:

var myCollapsible = document.getElementById('sidebar')
myCollapsible.addEventListener('shown.bs.collapse', function () {
  alert("it works!"); //This never gets fired
})

I've been looking for a similar question for a long time but I didn't find anything

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

add the following CSS class to the text element:

.dont-break {
  min-width: 100%;
  white-space: nowrap;
  overflow: hidden;
}

example https://jsfiddle.net/Lnqpcujm/5/

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!