multicol-count-large-001

multicolumn | column-count

WeasyPrint

Reference (good) by WeasyPrint

Reference (good) by this browser

This browser

Flags
ahem

Source

 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
 2 <html>
 3 <head>
 4 <title>multicolumn | column-count</title>
 5 <link rel="author" title="Opera Software ASA" href="http://www.opera.com/">
 6 <link rel="help" href="http://www.w3.org/TR/css3-multicol/#the-number-and-width-of-columns">
 7 <link rel="match" href="reference/multicol-count-large-ref.htm">
 8 <meta name="flags" content="ahem">
 9 <style type="text/css">
10 body>div {
11 	font-family: ahem;
12 	font-size: 1em;
13 	line-height: 1em;
14 	color: red;
15 	background: yellow;
16 	margin: 1em;
17 	border: 1em solid gray;
18 	width: 12em;
19 	orphans: 1;
20 	widows: 1;
21 
22 	column-count: 1000;
23 	column-gap: 0;
24 }
25 span {
26 	color: black;
27 }
28 </style>
29 </head>
30 
31 <body>
32 
33 <div>
34 	xx xx
35 	xx xx
36 	xx xx
37 	<span>xx xx</span>
38 </div>
39 
40 </body>
41 </html>