topher0303
Programmer
How do you get text to wrap that has no spaces? The following html will wrap because it has spaces:
<table style="table-layout: fixed;">
<col style="width: 50px; vertical-align: top;">
<tr>
<td>1, 2, 3, 4, 5, 6, 7, 8 , 9, 10</td>
</tr>
</table>
However, remove the spaces as follows and it will not wrap.
<table style="table-layout: fixed;">
<col style="width: 50px; vertical-align: top;">
<tr>
<td>1,2,3,4,5,6,7,8,9,10</td>
</tr>
</table>
Is there a way to force it to wrap even without spaces?
Chris.
<table style="table-layout: fixed;">
<col style="width: 50px; vertical-align: top;">
<tr>
<td>1, 2, 3, 4, 5, 6, 7, 8 , 9, 10</td>
</tr>
</table>
However, remove the spaces as follows and it will not wrap.
<table style="table-layout: fixed;">
<col style="width: 50px; vertical-align: top;">
<tr>
<td>1,2,3,4,5,6,7,8,9,10</td>
</tr>
</table>
Is there a way to force it to wrap even without spaces?
Chris.