ice78991
Programmer
- Nov 20, 2006
- 216
Ii am setting up a webpage that inserts tables one after the other within a div tag. The general structure is shown below
<html>
<div align="center">
<table border="0" cellspacing="0" cellpadding="0">
<tr><td> Some Text.....</td></tr>
</table>
<table border="0" cellspacing="0" cellpadding="0">
<tr><td> More Text.....</td></tr>
</table>
</div>
</html>
Is it ok to insert a series of tables like this directly onto the page
Will this yield consistent results across 99% of browsers
<html>
<div align="center">
<table border="0" cellspacing="0" cellpadding="0">
<tr><td> Some Text.....</td></tr>
</table>
<table border="0" cellspacing="0" cellpadding="0">
<tr><td> More Text.....</td></tr>
</table>
</div>
</html>
Is it ok to insert a series of tables like this directly onto the page
Will this yield consistent results across 99% of browsers