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

Making A Column In A Table A Fixed Length

Status
Not open for further replies.

FontanaS

Programmer
Joined
May 1, 2001
Messages
357
Location
US
Hello,

Is there a way to have a column in a table a fixed length?
Ex - say I want the first column to be 400 and the next column to be 200.

<table border="0" width="600">
<tr>
<td><u><b><font face="Tahoma" size="2">Line Item</font></b></u></td>

<td><u><b><font face="Tahoma" size="2">Authorized</font></b></u></td>

</tr>
<tr>

<td><font face="Tahoma" size="2"><%=Trim(RsLines("ReimbName"))%></font></td>

<td><font face="Tahoma" size="2"><%=FormatCurrency(RsLines("ReimbFunding"),0)%></font></td>

</tr>
</table>

THANKS!
 
That is a HTML/CSS question, so it should be asked there.

<.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top