I bet it's the single quotes.
Reversing the single/double quotes is the optimal solution.
As an aside, it's not proper html, but you can also just omit the quotes entirely and it will still display correctly on almost any browser.
Code:
<table cellspacing=5 cellpadding=5 width=100% border=1>...</table>
But then, if you want to do things the right way, you should be using CSS to modify the table's attributes rather than using the deprecated attribute tags:
Code:
<table style="margin:5px;padding:5px;width:100%;border:1px solid black;">...</table>
Or better yet, make those definitions in a separate css file and use a class or id to assign it to the table.
Last edited by nyef; 05-18-2008 at 01:08 AM..
|