Hello,
I need a table layout where all columns have a minimal width
and one selected column takes all the available remaining
horizontal space.
According to the specs, this is exactly what the col and colgroup
elements can achieve by using relative width attributes, e.g.
<table width='100%'>
<col width='0*'>
<col width='0*'>
<col width='1*'> <!-- this column would take the rest of the space -->
<col width='0*'>
<tr>...
An example URL that works fine in Gecko/based browsers:
Unfortunately, IE does not seem to recognize relative column widths.
Is there any equivalent solution or workaround that would work in IE
(apart from specifying hard-coded pixel or percent widths)?
Thanks,
Entoll
I need a table layout where all columns have a minimal width
and one selected column takes all the available remaining
horizontal space.
According to the specs, this is exactly what the col and colgroup
elements can achieve by using relative width attributes, e.g.
<table width='100%'>
<col width='0*'>
<col width='0*'>
<col width='1*'> <!-- this column would take the rest of the space -->
<col width='0*'>
<tr>...
An example URL that works fine in Gecko/based browsers:
Unfortunately, IE does not seem to recognize relative column widths.
Is there any equivalent solution or workaround that would work in IE
(apart from specifying hard-coded pixel or percent widths)?
Thanks,
Entoll
Comment