In this case:
<td>
Some Text
<span class="Icon"></span>
</td>
I want to get the line break when necessary on my Text but I don't want my span to get on a new line, I want it to always stick to part of the text. How can I do it?
Thanks,
Replace all whitespace before the
span
with a single no-break space (if you want some spacing to appear between your text and whatever rendering you have styled for thespan
; if no spacing is desired, omit the
).