summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/368504-3-ref.html
blob: b51009f3e47c300d24e70156cf550972aaa74b2f (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
<html>
<head><style>
  /* cellspacing=0 cellpadding=0          */
  table  { border-spacing: 0 }
  td, th { padding: 0 }

  /* Table width */
  table { width: 500px; }

  /* Cell colors + widths */
  td.a { background: lightgreen; width: 100px;    }
  td.b { background: yellow;     width: 60%;      }
  td.c { background: lightblue;  width: 30%;      }
</style></head>
<body>
<table>
  <tr>
    <td class="a">a</td>
    <td class="b">b</td>
    <td class="c">c</td>
  </tr>
</table>
</body>
</html>