Quote:
|
Originally Posted by viki
If you're worried about the small gap that the inner table would make on the left and the right sides, here's what you can do for that inner table:
Code:
<table>
<tr><td>1</td>
<td>
content of cell 2
<table CLASS=WHATEVER><tr><td>table replacing cell 3</td></tr></table>
</td></tr></table>
Code:
<style>
table.whatever {margin-left: 0px; margin-right: 0px;}
</style>
Sorry if I'm horribly misunderstanding all of this but in my head it should work. 
|
yeah I was using CSS to begin with, had everything streamlined.. No tables at all. then realized the CSS attributes are not cross-browser compatible. Firefox REALLY fucked it up badly. It was the ordering of classes in the style sheet. One browser wants it one way, the other the other way..
Such a shame too.. my code was so damn minimal!