Table at top of page

R

Russ Hromyko

I would like to create a bar or table that goes all the way across the very
top of the page yet when I create a table it doesn't go all the way to the
top or sides, there is a small space that seems to go around the table. How
do I create a table or whatever so there is no space between the table and
top and side of the page? I hope I explained this correctly.

Thanks.

Russ
 
R

Roy Schestowitz

Russ said:
I would like to create a bar or table that goes all the way across the
very
top of the page yet when I create a table it doesn't go all the way to
the
top or sides, there is a small space that seems to go around the table.
How do I create a table or whatever so there is no space between the table
and
top and side of the page? I hope I explained this correctly.

Thanks.

Russ

Try this:

<body style="margin-top: 0px; margin-left: 0px; margin-right: 0px;">
<table width="100%" cellspacing="0">
<TBODY>
<TR>
<TD>
Title
</TD>
</TR>
</TBODY>
</TABLE>
</body>

Hope it helps,

Roy
 
C

CEFM

what does the <tbody> tag do?

Roy Schestowitz said:
Try this:

<body style="margin-top: 0px; margin-left: 0px; margin-right: 0px;">
<table width="100%" cellspacing="0">
<TBODY>
<TR>
<TD>
Title
</TD>
</TR>
</TBODY>
</TABLE>
</body>

Hope it helps,

Roy
 
M

Mark Parnell

Previously in alt.html said:
How
do I create a table
http://www.allmyfaqs.com/faq.pl?Tableless_layouts

or whatever so there is no space between the table and
top and side of the page?

You'd have to remove the default margins/padding on the html and body
elements, but this will affect the whole document, so beware of the
changes it may make to the look of the rest of the page.

html,body { margin:0; padding:0; }
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,434
Messages
2,571,689
Members
48,796
Latest member
Greg L.

Latest Threads

Top