multicol-gap-large-002

'column-gap' with large value

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>CSS Multi-column Layout Test: 'column-gap' with large value</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-06 -->
 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-large-002-ref.htm">
 9   <meta name="flags" content="ahem">
10   <style type="text/css">
11   div
12   {
13   background-color: yellow;
14   border: gray solid 1em;
15   color: black;
16   font: 1.25em/1 Ahem;
17   orphans: 1;
18   widows: 1;
19   width: 11em;
20 
21   column-count: 2;
22   column-gap: 4em;
23 
24   /*
25   N == 2;
26   W == 3.5em;
27   */
28   }
29 
30   span {color: blue;}
31   </style>
32  </head>
33  <body>
34   <div>
35   bl ac
36   <span>
37   bl ue
38   </span>
39   <span>
40   bl ue
41   </span>
42   bl ac
43   </div>
44  </body>
45 </html>