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

27 lines
454 B
HTML
Raw Normal View History

2015-10-21 05:03:22 +02:00
Both columns should be 200px
<table bgcolor=orange border>
<colgroup span=2 width=200></colgroup>
<tr>
<td>c11</td><td>c12</td>
</tr>
</table>
<BR>
Both columns should be 200px
<table bgcolor=orange border>
<colgroup width=200>
<col span=2>
</colgroup>
<tr>
<td>c11</td><td>c12</td>
</tr>
</table>
<BR>
Both columns should be 200px
<table bgcolor=orange border>
<col width=200 span=2>
<tr>
<td>c11</td><td>c12</td>
</tr>
</table>
<BR>