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.
- <table width="100%" cellspacing="5" cellpadding="5">
- <tbody>
- <tr>
- <td>
-
- A bunch of other code with tables
- </td>
- </tr>
- </tbody>
- </table>
Turns out I had syntax in my css for
"white-space: no wrap;"
doh!