When I put a <div ...> inside a <table> specification, functionality is
not there. When I put the <table> inside the <div> everything works.
Why is that?
Because the magic 8 ball said so.
How about a little more data for those of us with no magic 8 ball?
I put divs in tables all the time and have no problem.
Browser?
What functionality doesn't work?
What happens?
What doesn't happen?
Test code?
You can't overlap. Watch your nesting.
Bad:
<div>
<table>
....
</div>
</table>
Bad:
<table>
....
<div>
....
</table>
</div>
Bad:
<table>
<div>
<tr>
....
</tr>
</div>
</table>
Good:
<table>
<tr><td>
<div>
....
</div>
</td>
</tr>
</table>
Divs in tables must be *in* the table cell, not between rows or cells.
-------------------------------------------------
~kaeli~
Press any key to continue or any other key to quit.
Who is General Failure and why is he reading
my hard disk?
http://www.ipwebdesign.net/wildAtHeart
http://www.ipwebdesign.net/kaelisSpace
-------------------------------------------------