mirror of
https://github.com/roytam1/basilisk55.git
synced 2026-05-27 13:28:52 +00:00
31 lines
317 B
HTML
31 lines
317 B
HTML
<link rel="match" href="table-width-ref.html">
|
|
|
|
<style>
|
|
table {
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
td {
|
|
padding: 0;
|
|
}
|
|
</style>
|
|
|
|
<!-- width=0 should be treated as 'auto' -->
|
|
<table width=0>
|
|
<tr>
|
|
<td>
|
|
a b
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<hr>
|
|
|
|
<table width=1>
|
|
<tr>
|
|
<td>
|
|
a b
|
|
</td>
|
|
</tr>
|
|
</table>
|