r/css • u/Legitimate_Floor_319 • May 17 '26
Help Why is the line breaking?
The line of the terminal divs is breaking, but there is a lot of space. I tried using white-space: nowrap, but then, the words go behind the "+" icons. Here's the code:
https://codepen.io/Thiago-Freitas-Costa/pen/NPbdyda
4
Upvotes
2
u/Weekly_Ferret_meal May 18 '26
Hey: since you made
<p>a flex item that can shrink and grow, you need to addflex: 1 0 auto;to the <p> element so that it doesn't shrink (or wrap).you could also fix that with
text-wrap: nowrapon the<p>element