> From: Terry B > > lets say i try and add > > <table><tr><td>Some Info</tr></td></table> > > it ends up being something like > > <TABLE><TBODY><TR><TD>Some Info</TD></TR></TBODY></TABLE>
What problem do you see there? It looks perfectly correct to me. TBODY is a required element which the browser is kind enough to insert automatically if it's missing from your HTML. The upper case tags are just an artifact of the way you're viewing the DOM tree - it's no longer HTML at that point anyway. -Mike

