Hi,
I just want to know which way is technically correct to put tables one after another (not side by side), or both ways are correct, bcz both produce the same results.
<body>
<table border="1" width="100%" cellspacing="0" cellpadding="0">
<tr><td>Yes</td></tr>
</table>
<table border="1" width="100%" cellspacing="0" cellpadding="0">
<tr><td>NO</td></tr>
</table>
</body>
<body>
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr><td>
<table border="1"
width="100%"cellspacing="0"cellpadding="0">
<tr><td>Yes</td></tr>
</table>
</td></tr>
<tr><td>
<table border="1" width="100%" cellspacing="0"
cellpadding="0">
<tr><td>NO</td></tr>
</table>
</td></tr>
</table>
</body>
I just want to know which way is technically correct to put tables one after another (not side by side), or both ways are correct, bcz both produce the same results.
<body>
<table border="1" width="100%" cellspacing="0" cellpadding="0">
<tr><td>Yes</td></tr>
</table>
<table border="1" width="100%" cellspacing="0" cellpadding="0">
<tr><td>NO</td></tr>
</table>
</body>
<body>
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr><td>
<table border="1"
width="100%"cellspacing="0"cellpadding="0">
<tr><td>Yes</td></tr>
</table>
</td></tr>
<tr><td>
<table border="1" width="100%" cellspacing="0"
cellpadding="0">
<tr><td>NO</td></tr>
</table>
</td></tr>
</table>
</body>