Hello,
I am using a table nested in a table which happens to have the border-collapse:collapse;
property. The problem is with the padding
property of the nested table, which Opera seems to ignore.
To reduce it to the simplest possible, with the following HTML code...:
<table style="border-collapse:collapse;">
<tr>
<td>
<table style="padding:3em;">
<tr><td>ABCDE</td></tr>
</table>
</td>
</tr>
</table>
...the padding
property is ignored by Opera, whereas Firefox, Chrome and Safari take it into account in the rendering.
My question is: which one is right? Should I leave it this way and ignore Opera users, or search another way to set my padding because Opera is right on the syntax?
Thank you very much for your help!