I attempted to create a table where the first column takes up 40% of the total width, with the remaining columns each occupying 10%. However, all my columns ended up being the same width.
<table >
<col style="width:40%">
<col style="width:10%">
<col style="width:10%">
<col style="width:10%">
<col style="width:10%">
<col style="width:10%">
<col style="width:10%">
<thead>
<tr>
<th>head 1</th>
<th>head 2</th>
<th>head 3</th>
<th>head 4</th>
<th>head 5</th>
<th>head 6</th>
</tr>
</thead>
<tbody>
<tr>
<th><input type="text" val=""></th>
<th><input type="text" val=""></th>
<th><input type="text" val=""></th>
<th><input type="text" val=""></th>
<th><input type="text" val=""></th>
<th><input type="text" val=""></th>
</tr>
</tbody>
</table>