i have a page with table & css
table has 2 columns
<table><td>Name</td><td>asp control</td></table> in IE it appears properly
but in FF it appears as one below another.
Name
asp.net control
This is wrong HTML. TD must be inside a TR tag
<table><tr><td>Name</td><td>asp control</td></tr></table>
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.