blob: 10507c2c22ea2d75f6fbde4cd048a108e6565cc9 (
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
|
<!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: Caption border and table border</title>
<link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
<link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#model" />
<meta name="assert" content="A caption has padding, margin and borders independent of those of its parent table." />
<style type="text/css">
#table, #caption
{
border: 1px solid black;
padding: 1em;
}
#caption, #cell
{
height: 4em;
width: 4em;
}
#table
{
display: table;
margin-top: 1em;
}
#caption
{
display: table-caption;
margin-bottom: 1em;
}
#row
{
display: table-row;
}
#cell
{
display: table-cell;
}
</style>
</head>
<body>
<p>Test passes if there are two separate boxes below and the "Filler Text" inside the boxes has the same alignment.</p>
<div id="table">
<div id="caption">Filler Text</div>
<div id="row">
<div id="cell">Filler Text</div>
</div>
</div>
</body>
</html>
|