I’m currently having an issue where I want a label (within a within a table) to all be on a single line, in IE (firefox seems fine). But currently its being split into 3:
...
<td class="label"><span class="mandatory">* </span>Starting Date: </td>
...
Result:
*
Starting
Date
Desired Result:
*Starting Date
You don’t have the
s in the right places, it should be:That should be enough, but you might want to try applying
white-space:nowrapto the element instead.