summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-tables/table_grid_size_col_colspan-ref.html
blob: 160b9975ef0f23632a856c8f1c7e849bc2a63c50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!doctype html>
<style>
  table {
    border-collapse: collapse;
    table-layout:fixed;
  }
  td {
    height:50px;
    background: yellow;
    border: 10px solid green;
    padding:0;
  }
</style>
<table>
  <td style="width:40px"></td>
</table>
<table>
  <td style="width:90px"></td>
</table>
<table>
  <td style="width:140px"></td>
</table>
<table>
  <td style="width:40px"></td>
</table>
<table>
  <td style="width:40px"></td>
</table>