faqts : Computers : Programming : Languages : JavaScript : Tables

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

7 of 19 people (37%) answered Yes
Recently 1 of 10 people (10%) answered Yes

Entry

How can I keep one column of table to fixed width and another to remaining screensize

Aug 30th, 2000 06:04
Martin Honnen, Mehul Sonpal,


I don't think there is any JavaScript used to solve that; set WIDTH of 
the TABLE to 100% and then set the WIDTH of the cell as needed:
  <TABLE WIDTH="100%">
  <TR>
  <TD WIDTH="200">
  Kibology
  </TD>
  <TD>
  ....
  </TD>
  </TR>
  </TABLE>