I have a table that spans the entire width of the screen, with 3 <td>
elements inside. The content in the 2nd <td>
does not contain any spaces and is quite long, causing it to expand beyond its allotted 70% width and disrupt the layout. Is there a way to force the content to wrap onto the next line within the 70% width using CSS? (refer to the code below)
<table width=”100%”>
<tr>
<td width=”10%”>Result1</td>
<td width=”70%”>addfdss212s1ssff54f5df4d54s54dsf64dsfsaDjvmckjs
adkjkdflsadfkksdalasdflsdfkasd6f465
</td>
<td width=”20%”>Comments</td>
</tr>
</table>