what is the HTML code to make a table invisible?

and just see the words over the background image

Public Comments

  1. <table ... border=0>
  2. Add in--- border="0" The border will then disappear. For more online tips, visit...
  3. Inside the table code, insert border=0 for example <table border="0"> asjdkaskd----more coding ----- </table>
  4. i am sure you just make the border zero, so add this: border="0" i am pretty sure...
  5. You probably mean make the border disappear. <table border="0"> to make the whole table disappear (including everything in it) <table style="visibility:hidden">
  6. 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