I have a requirement to wrap a text shown within a table after 60 characters
here is what I have
<table width="50%">
<tr>
<td width="25%">
This is a text that needs to be wrapped after every 60 characters.This is a text that needs to be wrapped after every 60 characters.This is a text that needs to be wrapped after every 60 characters.
</td>
</tr>
<.table>
The text wraps automatically in IE but I need to make it wrap exactly at sixty characters. So a 240 character long text should end up getting diplayed in 4 lines in IE within the table cell.How do I adjust this table width? Is there any way to do this using CSS or any other ways.
Thanks a lot for your help
Yes, you can apply styles to a table
here is a link that should help.
Here is another.