Quote:
|
Originally Posted by iwantchixx
that MIGHT work, I'll try it.
The cell is colored with no padding or spacing atributes on that table so I dont know if it will lign up right.
|
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.
