I have a list of span elements in a td with a fixed width.
I want to wrap the span elements, but no the words within the span elements.
So if I have
<td>
<span>bind</span>
<span>defaults</span>
<span>nofail</span>
<span>x-systemd.requires=zfs-mount.service</span>
<span>bind</span>
<span>defaults</span>
<span>nofail</span>
<span>x-systemd.requires=zfs-mount.service</span>
</td>
I want each span to go to a new line if needed, but not break the span in the middle.
How can I achieve this?