Take a look at my code example
<td width="40%">Field One</td>
<td width="30%">THISISAVERYLONGTEXTSOMEMORECHARACTERSTOMAKEITALITTLELONGERTHISISJUSTFORTESTING</td>
<td width="30%">Field Three</td>
I have tried various methods within the <td>
tag to prevent the long text from overflowing. However, none of them seem to work as intended.
Here are the methods I've used:
style="width:200px;"
style="width:100px; overflow:hidden"
style="word-wrap:break-word;
I'm looking for a solution that does not involve scrolling the text. Any suggestions?