flexbox-with-multi-column-property.html (796B)
1 <!DOCTYPE html> 2 <title>CSS Flexbox: column-* properties are ignored.</title> 3 <link rel="stylesheet" href="support/flexbox.css"> 4 <link rel="help" href="https://drafts.csswg.org/css-flexbox/#flex-containers"> 5 <link rel="help" href="https://drafts.csswg.org/css-multicol-1/#propdef-column-count"> 6 <link rel="match" href="reference/flexbox-with-multi-column-property-ref.html"> 7 <meta name="assert" content="This test ensures that column-* properties (in the Multicol module) have no effect on a flex container."/> 8 <style> 9 .flexbox, .inline-flexbox { 10 column-count: 2; 11 column-gap: 100px; 12 width: 20em; 13 font-kerning: none; 14 } 15 </style> 16 <div class="flexbox"> 17 AAAAAAAAAA BBBBBBBBBB CCCCCCCCCC DDDDDDDDDD 18 </div> 19 20 <div class="inline-flexbox"> 21 AAAAAAAAAA BBBBBBBBBB CCCCCCCCCC DDDDDDDDDD 22 </div>