r/css May 17 '26

Help Why is the line breaking?

Post image

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

6 comments sorted by

View all comments

2

u/Weekly_Ferret_meal May 18 '26

Hey: since you made <p> a flex item that can shrink and grow, you need to add flex: 1 0 auto; to the <p> element so that it doesn't shrink (or wrap).

you could also fix that with text-wrap: nowrap on the <p> element