Comment passer un colgroup en % si je fait <col width="100px"> ça fonctionne mais pour faire une table
qui se redimentionne automatiquement en fonction de la résolution d'écran, comment je fait ???
Citation :
<table class="table">
<colgroup>
<col width="20%" />
<col width= "80%" />
<tr>
<td>bla bla</td>
<td>bla bla</td>
</tr>
</table>
|
et la CSS
Citation :
.table {
margin-right: auto; margin-left: auto;
width: 98%;
text-align: left;
}
|
même chose avec td :
Citation :
<table class="Table">
<tr>
<td style="width: 450px;">bla bla</td>
</tr>
</table>
|
Ça fonctionne, mais si je met "width: 80%;" ça ne fonctionne plus !
Help merci.
Message édité par Flyman30 le 23-06-2003 à 11:01:24