potresti crearti delle classi con le varie dimensioni in pixel
codice:
.w20p{width:20px}
.w50p{width:50px}
o in percentuale

codice:
.w10{width:10%}
.w20{width:20%}
.w40{width:40%}

.w100{width:100%}
da assegnare alle varie colonne

codice:
<table border="1" cellpadding="2" cellspacing="0" class="w100" frame="border" rules="all" summary="Questa tabella visualizza l'elenco degli album">
<caption>Album</caption>
<thead>
<tr>
<th class="w20">Copertina</th>
<th class="w40">Titolo</th>
<th class="w20">Casa discografia</th>
<th class="w10">catalogo</th>
<th class="w10">Anno </th>
</tr>
</thead>
<tbody>
<tr>
<td>...</td>
<td>...</td>
<td>...</td>
<td>...</td>
<td>...</td>
</tr>
</tbody>

</table>