Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Creating an invisible table (again!)

Status
Not open for further replies.

RichardHumphreys

Technical User
Jan 26, 2002
53
GB
Sorry to post this again.

The reply given to my earlier post does not work. I think there is some misunderstanding - or perhaps I have not made myself clear.

I want to display data in fixed positions (like in a table) but without the table grid lines appearing. Unfortunately, the code given in the previous reply does display the grid lines.

I have an old Web page course which states this is possible but I cannot now get their code of <TABLE CELLSPACING=0> to work either!!

Any additional help given will be appreciated.

Richard
 
Look into CSS to build your tables:


[tt]

google.gif
[sup]​
 
Hi there,

Can you not just set the borders to zero to hide them ?

Cheers

John
 
yup

heres 3x3 table no borders

Code:
<table width=&quot;600&quot; border=&quot;0&quot; cellspacing=&quot;2&quot; cellpadding=&quot;1&quot;>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
</table>

Listen All I ask is that You close out a Post You Started!!!!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top