RetroZilla/layout/html/tests/table/core/col_widths_auto_autoPer.html

29 lines
645 B
HTML
Raw Normal View History

2015-10-21 05:03:22 +02:00
auto table
<table border>
<tr>
<td width=0%>0% 0% 0% 0%</td>
<td>auto</td></td></tr>
</table>
<BR>
auto table - % width cell increases table width based on % cell
<table cellspacing=10 cellpadding=10 border>
<tr>
<td width=10%>10% 10%</td>
<td>auto</td></tr>
</table>
auto table - % width cell increases table width based on % cell
<table cellspacing=10 border>
<tr>
<td width=10%>10%</td>
<td>auto</td></tr>
</table>
<BR>
auto table - % width cell increases table width based on % cell which makes it largest
<table cellspacing=10 border>
<tr>
<td width=10%>10%</td>
<td width=1%>1%</td>
<td>auto</td></tr>
</table>
<BR>