Quote:
Originally Posted by AlexBell
Is there another way of forcing the T and the — to stick together.
|
AFAIK, the only thing that works is wrapping words with em dashes in spans and assigning them a
white-space: nowrap style. For example:
Code:
span.nowrap {
white-space: nowrap;
}
<p>He lived in <span class="nowrap">M—</span> at that time.</p>