Prevent Wrapping in Flexbox
To prevent flex items from wrapping onto multiple lines, use the flex-wrap property and set it to nowrap on the container.
Set display: flex on the container.
Use flex-wrap: nowrap to keep all items on a single line.
Combine with overflow properties if items exceed container width.
Use flex-shrink or flex-basis to control item sizing within the container.