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

Table help

Status
Not open for further replies.

usp004

ISP
Jul 10, 2000
46
US
I am trying to make an HTML table which is arranged like this:

111111: 1111 111111
222222: 2222 22222:22222
333333: 3333 33333:33333
444444: 4444 44444:44444

Then I have a table within the 1st table like so:

AAAAAAA BBBBBB CCCCCCCCC DDDDDDDDD EEEEEEEEEEEEEEEEE
aaaaa bbbb ccccccc ddddddd eeeeeeeeeeeeeee
aaaaa bbbb ccccccc ddddddd eeeeeeeeeeeeeee
aaaaa bbbb ccccccc ddddddd eeeeeeeeeeeeeee

When I make the table width="100%" the first column (1's) moves over and is NOT aligned to the left of the screen. How can I fix this.

Thanks,
Brian
[sig][/sig]
 
Please send the code segment so I can see what your actually doing. [sig]<p>Dano<br><a href=mailto:dskryzer@hotmail.com>dskryzer@hotmail.com</a><br><a href= </a><br>What's your major malfunction[/sig]
 
Is this what you sort of have?

<TABLE width=&quot;90%&quot; >

<TR>
<TD>11111</TD>
<TD></TD>
<TD>
<P align=left>111111: 1111</P></TD>
<TD>
<P align=left>111111</P></TD></TR>
<TR>
<TD>22222</TD>
<TD></TD>
<TD>
<P align=left>222222: 2222</P> </TD>
<TD>
<P align=left>22222:22222</P></TD></TR>
<TR>
<TD>33333</TD>
<TD>
<P align=left>333333:3333</P></TD>
<TD></TD>
<TD>
<P align=left>33333:33333</P></TD></TR>
<TR>
<TD>
<P align=left>AAAAAAA</P></TD>
<TD>
<P align=left>BBBBBBBB</P></TD>
<TD>
<P align=left>CCCCCCCCCCC</P></TD>
<TD>
<P align=left>DDDDDDDDDD </P> </TD></TR>
<TR>
<TD>
<P align=left>aaaaaa</P></TD>
<TD>
<P align=left>aaaaaa</P></TD>
<TD>
<P align=left>aaaaa</P></TD>
<TD>
<P align=left>bbbbb</P></TD></TR></TABLE>
<TABLE>
</TABLE> [sig]<p>Dano<br><a href=mailto:dskryzer@hotmail.com>dskryzer@hotmail.com</a><br><a href= </a><br>What's your major malfunction[/sig]
 
Here is the upper table:

<TABLE border=0 cellSpacing=0 class=clsSmallFont name=&quot;headerinfo&quot;>
<TBODY>
<TR>
<TD align=right>Purchase Order :</TD>
<TD align=left><P>350</P></TD>
<TD>&nbsp</TD>
<TD>&nbsp</TD>
<TD align=right width='200'><INPUT name=chkDelTxn type=checkbox><B>Delete this transaction</B></TD>
<INPUT name=hidPONum type=hidden value=350></TR>
<TR>
<TD align=right>Purchase Order Date :</TD>
<TD align=left><P>08/15/2000</P></TD>
<TD width='20'>&nbsp</TD>
<TD align=right>Ship to Location :</TD>
<TD align=left><P>Demo Building1</P></TD>
</TR>
<TR>
<TD align=right>Period Closing Date :</TD>
<TD align=left><INPUT maxLength=10 name=PerCloseDate
style=&quot;HEIGHT: 20px; WIDTH: 80px&quot; value=09/19/1999></TD>
<TD>&nbsp</TD>
<TD align=right>Ship to Number :</TD>
<TD align=left><P>MS</P></TD>
</TR>
<TR>
<TD align=right>Vendor Name :</TD>
<TD align=left><P>R&amp;J School Supplies</P></TD>
<TD>&nbsp</TD>
<TD align=right>Bank Number :</TD>
<TD align=left><INPUT maxLength=10 name=BankNum
style=&quot;HEIGHT: 20px; WIDTH: 80px&quot; value=abc></TD>
</TR>
<TR>
<TD align=right>Vendor D&amp;B Number :</TD>
<TD align=left><P>43071</P></TD></TR>
<TR>
<TD align=right></TD>
<TD align=left>
<P></P></TD>
</TR>
</TBODY></TABLE>

If I make the width=&quot;100%&quot; it looks all screwed up?? [sig][/sig]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top