Here is my simple html code that list users in a table format:

<html><B>User List</B><table border=1 cellpadding=0 cellspacing=1>
<TR><TD>Name</TD><TD>Age</TD><TD>Gender</TD></TR><BR>
<TR><TD>Joe</TD><TD>21</TD><TD>M</TD></TR><BR>
<TR><TD>Mary</TD><TD>33</TD><TD>f</TD></TR><BR></Table</Html>

The problem is: There is a big gap (several blank rows) between the line
'User List' and the table when display in html. (It appears that the more
<TD> entries I make in the code, the wider the gap.) What code would need to
be added to the coding in order to have the table listed just one line below
the line "User List"? I appreciate your help.

Fan

Re: Table issue by Olivia

Olivia
Mon May 23 15:10:20 CDT 2005

Your code -

</TR>
<BR>
<TR>

Why the <BR>?

Use -
</TR>
<TR>

"Fan Fan" <ffan102@hotmail.com> wrote in message
news:OUWIFF9XFHA.1660@TK2MSFTNGP10.phx.gbl...
> Here is my simple html code that list users in a table format:
>
> <html><B>User List</B><table border=1 cellpadding=0 cellspacing=1>
> <TR><TD>Name</TD><TD>Age</TD><TD>Gender</TD></TR><BR>
> <TR><TD>Joe</TD><TD>21</TD><TD>M</TD></TR><BR>
> <TR><TD>Mary</TD><TD>33</TD><TD>f</TD></TR><BR></Table</Html>
>
> The problem is: There is a big gap (several blank rows) between the line
> 'User List' and the table when display in html. (It appears that the more
> <TD> entries I make in the code, the wider the gap.) What code would need
to
> be added to the coding in order to have the table listed just one line
below
> the line "User List"? I appreciate your help.
>
> Fan
>
>



Re: Table issue by Fan

Fan
Mon May 23 15:15:29 CDT 2005

Olivia,

You are right. The <BR> contributed to the problem. After taking the <BR>s
off, the html works as the way I wanted. Thank you so much.

Fan

"Olivia Towery" <newsgroups@timwebs.com> wrote in message
news:ew6h4K9XFHA.4036@tk2msftngp13.phx.gbl...
> Your code -
>
> </TR>
> <BR>
> <TR>
>
> Why the <BR>?
>
> Use -
> </TR>
> <TR>
>
> "Fan Fan" <ffan102@hotmail.com> wrote in message
> news:OUWIFF9XFHA.1660@TK2MSFTNGP10.phx.gbl...
>> Here is my simple html code that list users in a table format:
>>
>> <html><B>User List</B><table border=1 cellpadding=0 cellspacing=1>
>> <TR><TD>Name</TD><TD>Age</TD><TD>Gender</TD></TR><BR>
>> <TR><TD>Joe</TD><TD>21</TD><TD>M</TD></TR><BR>
>> <TR><TD>Mary</TD><TD>33</TD><TD>f</TD></TR><BR></Table</Html>
>>
>> The problem is: There is a big gap (several blank rows) between the line
>> 'User List' and the table when display in html. (It appears that the more
>> <TD> entries I make in the code, the wider the gap.) What code would need
> to
>> be added to the coding in order to have the table listed just one line
> below
>> the line "User List"? I appreciate your help.
>>
>> Fan
>>
>>
>
>