I have the following code:
<div className={css.serviceInfo}>
{availableServicesArray.map(service => {
return(
<span className={css.extraInfoLabel}>{service}</span>
)
})}
</div>
which renders like this :
My question is: How can I make the span
's text not be cut and go to the next line instead. I have tried with white-space:nowrap
and white-space: initial
but none work.
Any idea how to do this ?