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 MikeeOK on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do I create an invisible table? 1

Status
Not open for further replies.

RichardHumphreys

Technical User
Jan 26, 2002
53
GB
I want to create an invisible table to display text/graphics in a fixed position.

I know how to create a standard table. I have tried amending the HTML code to e.g., <TABLE CELLSPACING=O WIDTH=70%> but the table is still visible in the browser.

Please let me know what I'm doing wrong!

TIA

Richard
 
Make sure not to assign a table border to be invisible

<TABLE BORDER=&quot;1&quot;>
<caption align=&quot;bottom&quot;>This is the Table Caption</caption>
<TR> <TH>Heading 1 <TH> Heading 2 <TH> Heading 3 <TH> Heading 4 </TH> </TR>
<TR> <TD> 0.32 </TD> <TD> 1.2 </TD> <TD> 3.2 </TD> <TD> alpha </TD> </TR>
<TR> <TD> 0.44 </TD> <TD> 0.3 </TD> <TD> 7.2 </TD> <TD> beta </TD> </TR>
</TABLE>
 
wht's up De
LOL...depends how u read your post:
Make sure not to assign a table border to be invisible
and sample....
<TABLE BORDER=&quot;1&quot;>

shoule be:
make sure you DO assing a border to be equal to zero
<TABLE BORDER=&quot;0&quot;>

...ok, hit me - I deserve it :)




> need more info?
:: don't click HERE ::
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top