what is the HTML code to make a table invisible?
and just see the words over the background image
Public Comments
- <table ... border=0>
- Add in--- border="0" The border will then disappear. For more online tips, visit...
- Inside the table code, insert border=0 for example <table border="0"> asjdkaskd----more coding ----- </table>
- i am sure you just make the border zero, so add this: border="0" i am pretty sure...
- You probably mean make the border disappear. <table border="0"> to make the whole table disappear (including everything in it) <table style="visibility:hidden">
- Actually there are two possible ways to make table invisible. 1.) By not placing the "border=0" in the table tag e.g. <table> <tr> <td>Samle data</td> </tr> </table> 2.)By placing the "border=0" in the table tag e.g. <table border=0> <tr> <td>Sample data</td> </tr> </table> *in number 1, computer interprets it automatically as invisible as it is the default value for table border.
Powered by Yahoo! Answers