Word Wrap/Table Width Styles in Creator HTML Pages

Word Wrap/Table Width Styles in Creator HTML Pages

What should I add to the css styles of tables in Zoho HTML pages if I want to avoid having the text push the width of the page out to fit everything in one line?  I just want to create a table (or div) that keeps the width of everything inside within the width of the page.


Below is what I have now, but paragraphs of text in nested tables will push the width out and keep all the text in one line.
I don't want to set a specific width, I just want the width of the entire table be at least 500px wide and not exceed the width of the window.


  1. <table width="100%" cellspacing="5" cellpadding="5">
  2.     <tbody>
  3.         <tr>
  4.             <td>
  5. A bunch of other code with tables

  6.             </td>
  7.         </tr>
  8.     </tbody>
  9. </table>

Turns out I had syntax in my css for 
"white-space: no wrap;"

doh!