Possible duplicate:
CSS: How to wrap text without spaces inside a <td>?
I have a line of text hundreds of characters long and what I need to display on the page.
Since the line is continuous without spaces, the browser will not wrap the text. My goal is to wrap the text according to the size in the browser window.
Does anyone know how to do this with CSS?
Code example:
<html> <body> <table> <tr><td> mffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff</td> </tr></table> </body> </html>
source share