[HTML] Как сделать такую таблицу, у которой ...

bastii

два столбца. У первого столбца ширина - это максимальная ширина содержимого среди всех ячеек в первом столбце. Второй столбец идет до конца таблицы, которая на всю ширину окна браузера (<table width="100%">).

artimon

Поробуй так:
<table width="100%">
<tr>
<td width="1" style="background:red">shit</td>
<td style="background:green">more shit</td>
</tr>
<tr>
<td style="background:blue">shit happens</td>
<td style="background:red">more shit</td>
</tr>
</table>

bastii

не пашет

artimon

Тогда так:
<table width="100%">
<tr>
<td width="1%" style="background:red">shit</td>
<td width="99%" style="background:green">more shit</td>
</tr>
<tr>
<td style="background:blue">shit happens</td>
<td style="background:red">more shit</td>
</tr>
</table>

freezer












shit more shit
shit happens more shit

freezer

 <table width="100%">
<col width=1/>
<col width="100%" />
<tr>
<td style="background:red">shit</td>
<td style="background:green">more shit</td>
</tr>
<tr>
<td style="background:blue">shit&nbsp;happens</td>
<td style="background:red">more shit</td>
</tr>
</table>

bastii

Ага. Спасибо.
Оставить комментарий
Имя или ник:
Комментарий: