multicol-gap-002.xht (1081B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <title>CSS Multi-column Layout Test: column-gap (basic)</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="multicol-gap-002-ref.xht" /> 9 <meta name="flags" content="ahem" /> 10 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" /> 11 <style type="text/css"><![CDATA[ 12 div 13 { 14 background-color: yellow; 15 border: gray solid 1em; 16 color: black; 17 font: 1.25em/1 Ahem; 18 orphans: 1; 19 widows: 1; 20 width: 11em; 21 22 column-count: 4; 23 column-gap: 1em; 24 } 25 26 span {color: blue;} 27 ]]></style> 28 </head> 29 <body> 30 <div> 31 bl ac 32 <span> 33 bl ue 34 </span> 35 <span> 36 bl ue 37 </span> 38 bl ac 39 </div> 40 </body> 41 </html>