|
HTML Attribute for <COL ...>
WIDTH
WIDTH fixes the width of the column. For example the following code sets the width of the fourth column to 150:
<TABLE BORDER CELLPADDING=5>
<COL SPAN=3>
<COL WIDTH="150px">
<TR> <TH>Name</TH> <TH>Price</TH> <TH>Status</TH> <TH>Comments</TH> </TR>
more table rows
</TABLE>
gives us this table:
| Name | Price | Status | Comments |
| office suite |
1,343.11 |
rent |
Nice office suite. Rent is rather expensive though. I'll leave it up to the CEO to decide. |
| cabling |
1.00 |
100% completely installed |
These cables are perfect for the job. We need about 250 feet of it. |
<COL BGCOLOR="..."> >
|