M
Mathew
All,
I want to format the width of the columns of a table using <colgroup>.
The following small sample
<table border="1">
<colgroup>
<col width="10" />
<col width="10" />
<col width="10" />
<col width="10" />
<col width="60" />
</colgroup>
<tr>
<th>
Name
</th>
<th>
Vorname
</th>
<th>
Einzug
</th>
<th>
Auszug
</th>
<th>
Bemerkung
</th>
</tr>
<tr>
<td>
B.
</td>
<td>
Ludwig
</td>
<td>
2010-12-21
</td>
<td>
2011-01-03
</td>
<td>
Bigger content
</td>
</tr>
</table>
works fine, but when applying this to bigger table(41 columns), changing
of the width does not have any impact.
Who know's what is wrong?
Regards,
Matthias
I want to format the width of the columns of a table using <colgroup>.
The following small sample
<table border="1">
<colgroup>
<col width="10" />
<col width="10" />
<col width="10" />
<col width="10" />
<col width="60" />
</colgroup>
<tr>
<th>
Name
</th>
<th>
Vorname
</th>
<th>
Einzug
</th>
<th>
Auszug
</th>
<th>
Bemerkung
</th>
</tr>
<tr>
<td>
B.
</td>
<td>
Ludwig
</td>
<td>
2010-12-21
</td>
<td>
2011-01-03
</td>
<td>
Bigger content
</td>
</tr>
</table>
works fine, but when applying this to bigger table(41 columns), changing
of the width does not have any impact.
Who know's what is wrong?
Regards,
Matthias