blob: 5b6ae14cb39a738e5043f7f33f57af95acb34148 (
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
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CSS Test: A spanning cell must be as far to the left as possible in an 'ltr' table</title>
<link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
<link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#table-layout" />
<meta name="assert" content="The spanning cell's rectangle is as far to the left as possible, but to the right of all cells in the same row that were earlier in source (no overlapping)." />
<style type="text/css">
td
{
border: 1px solid black;
height: 100px;
width: 100px;
}
#cell
{
background: black;
}
.cell
{
background: blue;
}
</style>
</head>
<body>
<p>Test passes if the black square is to the right of both blue boxes on the page.</p>
<table>
<tr>
<td></td>
<td class="cell" rowspan="2"></td>
<td></td>
<td></td>
</tr>
<tr>
<td class="cell"></td>
<td id="cell" rowspan="2" colspan="2"></td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td></td>
</tr>
</table>
</body>
</html>
|