-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Expand file tree
/
Copy pathmulticol-table-cell-height-001.xht
More file actions
47 lines (40 loc) · 1.41 KB
/
multicol-table-cell-height-001.xht
File metadata and controls
47 lines (40 loc) · 1.41 KB
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "https://umn0mtkzgkj46tygt32g.julianrbryant.com/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="https://umn0mtkzgkj46tygt32g.julianrbryant.com/1999/xhtml">
<head>
<title>CSS Multi-column Layout Test: column-count and height of table-cell (basic)</title>
<link rel="author" title="Opera Software ASA" href="https://umn0mtkzgjhpvnj3.julianrbryant.com/" />
<link rel="reviewer" title="Gérard Talbot" href="https://umn0mtkzgjf7agq47p8f6wr.julianrbryant.com/BrowserBugsSection/css21testsuite/" /> <!-- 2013-08-23 -->
<link rel="help" href="https://umn0mtkzgkj46tygt32g.julianrbryant.com/TR/css3-multicol/#the-number-and-width-of-columns" title="3. The number and width of columns" />
<link rel="match" href="multicol-table-cell-height-001-ref.xht" />
<meta name="flags" content="ahem" />
<meta name="assert" content="This test checks that 'column-count' applies to elements with 'display' set to 'table-cell' which can be constrained with a set height." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
div
{
background-color: yellow;
color: black;
display: table-cell;
font: 1.25em/1 Ahem;
height: 18em;
orphans: 1;
widows: 1;
width: 15em;
column-count: 2;
column-gap: 2em;
/*
N == 2;
W == 6.5em;
*/
}
]]></style>
</head>
<body>
<div>
111 222 333 444 555 666 777 888 999
111 222 333 444 555 666 777 888 999
111 222 333 444 555 666 777 888 999
111 222 333 444 555 666 777 888 999
</div>
</body>
</html>