column-count-used-001.html (654B)
1 <!doctype html> 2 <title>column-count used value when neither column-count nor column-width are auto</title> 3 <link rel=help href=https://www.w3.org/TR/css-multicol-1/#pseudo-algorithm> 4 <link rel=match href=../reference/ref-filled-green-100px-square.xht> 5 <style> 6 div { 7 position: absolute; 8 } 9 .bg { 10 background: red; 11 width: 100px; 12 height: 100px; 13 } 14 .test { 15 line-height: 50px; 16 width: 100px; 17 background: green; 18 columns: 2 20px; 19 column-gap: 0; 20 orphans: 1; 21 widows: 1; 22 } 23 </style> 24 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p> 25 <div class=bg></div> 26 <div class=test><br><br><br><br></div>