summaryrefslogtreecommitdiffstats
path: root/layout/reftests/table-width/percent-basis.html
blob: 96e91dc999c80de3cf27de716cc4a3c6ac170d66 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE HTML>
<html>
<head>
<title>basis of percentage widths</title>
<style type="text/css">

td { border: 3px inset blue; }

</style>
</head>
<body>

<!--

  The difference between the border-box width of the table and the width allocated to the columns is:

  2px = table border-left-width
  9px = table padding-left
  25px = 5 * table border-spacing-x
  5px = table padding-right
  2px = table border-left-width
  =================================
  43px

  -->

<table cellpadding="3" cellspacing="5" border="2" style="padding: 3px 5px 7px 9px">
  <tr>
    <td width="25%">x</td>
    <td width="38">x</td>
    <td><div style="width:38px">x</div></td>
    <td><div style="width:38px">x</div></td>
  </tr>
</table>

<table cellpadding="3" cellspacing="5" border="2" style="padding: 3px 5px 7px 9px" width="243">
  <tr>
    <td width="25%">x</td>
    <td width="38">x</td>
    <td><div style="width:38px">x</div></td>
    <td><div style="width:38px">x</div></td>
  </tr>
</table>

<table cellpadding="3" cellspacing="5" border="2" style="padding: 3px 5px 7px 9px" width="443">
  <tr>
    <td width="25%">x</td>
    <td width="38">x</td>
    <td><div style="width:38px">x</div></td>
    <td><div style="width:38px">x</div></td>
  </tr>
</table>

<table cellpadding="3" cellspacing="5" border="2" style="padding: 3px 5px 7px 9px" width="223">
  <tr>
    <td width="25%">x</td>
    <td width="38">x</td>
    <td><div style="width:38px">x</div></td>
    <td><div style="width:38px">x</div></td>
  </tr>
</table>

</body>
</html>