multicol-rule-nested-balancing-003.html (1217B)
1 <!DOCTYPE html> 2 <html> 3 <meta charset="utf-8"> 4 <title>CSS Multi-column Layout Test: Test the column rules' block-size with nested balancing multicol container</title> 5 <link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com"> 6 <link rel="author" title="Mozilla" href="https://www.mozilla.org/"> 7 <link rel="help" href="https://drafts.csswg.org/css-multicol-1/#cf"> 8 <link rel="help" href="https://drafts.csswg.org/css-multicol-1/#column-gaps-and-rules"> 9 <link rel="help" href="https://github.com/w3c/csswg-drafts/issues/2309"> 10 <link rel="match" href="multicol-rule-nested-balancing-003-ref.html"> 11 <meta name="assert" content="This test verifies that the column-rules are extended to the content block-end edges of their corresponding inner and outer multicol container."> 12 13 <style> 14 .outer { 15 column-count: 2; 16 column-rule: 6px solid black; 17 width: 400px; 18 height: 250px; 19 } 20 .inner { 21 column-count: 2; 22 column-rule: 3px solid gray; 23 height: 400px; 24 } 25 .inner-block { 26 background-color: lightblue; 27 height: 800px; 28 } 29 </style> 30 31 <article class="outer"> 32 <article class="inner"> 33 <div class="inner-block"></div> 34 </article> 35 </article> 36 </html>