Ok i have TWO html tables eg.
<table><td>HI</td></table>
<br/>
<table><td>HI AGAIN</td></table>
This would generate two html tables, one on top other the other, put hi do i remove the little gap in between them?
+REp for the helper

Ok i have TWO html tables eg.
<table><td>HI</td></table>
<br/>
<table><td>HI AGAIN</td></table>
This would generate two html tables, one on top other the other, put hi do i remove the little gap in between them?
+REp for the helper
Just did, Still Gap :@
Or if you mean so there next to each other:HTML Code:<table><td>HI</td></table> <table><td>HI AGAIN</td></table>
HTML Code:<table><td>HI</td><td>HI AGAIN</td></table>
Ino, just looks neater when I post.
The other alternative is
HTML Code:<table cellpadding="0" cellspacing="0" width="70" height="38"> <tr> <td height="19" width="70">HI</td> </tr> <tr> <td height="19" width="70">HI AGAIN</td> </tr> </table>
Add cellpadding="0" and cellspacing="0" to the <tr> tag
Lets set the stage on fire, and hollywood will be jealous.
<table><td cellpadding="0" and cellspacing="0">HI</td></table>
<table><td cellpadding="0" and cellspacing="0">HI AGAIN</td></table>
-- should work..
Don't see why you would need this, tables are for tabular data. For what I'm guessing your using for you should use divs.
How could this hapen to meeeeeeeeeeeeeee?lol.
Want to hide these adverts? Register an account for free!