I'm using xsl to display xml. I'm displaying in a table which I want the width="100%" if I insert a regular text with spaces it automatically underlines and displays the whole test in a few lines. But---- when I'm using
<table style="table-layout:fixed" width="100%">
<tr>
<td width="30%"><xsl:value-of select="Title"/></td>
<td width="70%"><xsl:value-of select="Description"/></td>
</tr>
</table>
and the text is to long it is just cut instead of being displayed in a few lines (that happens also when the text in the xml includes spaces) what can I do inorder to fix this problem?