1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2 <html>
3 <head>
4 <title>CSS Multi-column Layout Test: 'column-gap' with increasing values</title>
5 <link rel="author" title="Opera Software ASA" href="http://www.opera.com/">
6 <link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/"> <!-- 2013-08-05 -->
7 <link rel="help" href="http://www.w3.org/TR/css3-multicol/#column-gap" title="4.1. 'column-gap'">
8 <link rel="match" href="reference/multicol-gap-fraction-001-ref.htm">
9 <meta name="flags" content="ahem">
10 <style type="text/css">
11 div
12 {
13 background-color: gray;
14 font: 1.25em/1 Ahem;
15 width: 14.5em;
16 orphans: 1;
17 widows: 1;
18
19 column-count: 2;
20 column-gap: 0.5em;
21 }
22
23 #two {column-gap: 2.5em;}
24
25 #three {column-gap: 4.5em;}
26
27 #four {column-gap: 6.5em;}
28
29 span {color: blue;}
30 </style>
31 </head>
32 <body>
33
34 <div id="one">
35 blac
36 <span>blue</span>
37 </div>
38
39 <div id="two">
40 blac
41 <span>blue</span>
42 </div>
43
44 <div id="three">
45 blac
46 <span>blue</span>
47 </div>
48
49 <div id="four">
50 blac
51 <span>blue</span>
52 </div>
53
54 </body>
55 </html>