multicol-gap-decorations-022.html (1362B)
1 <!DOCTYPE html> 2 <title> 3 CSS Gap Decorations: Multicol gaps are painted with different outsets in start/end segment endpoints. 4 </title> 5 <link rel="help" href="https://www.w3.org/TR/css-gaps-1/#outset"> 6 <link rel="match" href="multicol-gap-decorations-022-ref.html"> 7 <link rel="author" title="Javier Contreras" href="mailto:javiercon@microsoft.com"> 8 <style> 9 body { 10 margin: 0px; 11 } 12 .container { 13 border: 2px solid rgb(96 139 168); 14 width: 200px; 15 height: 130px; 16 column-count: 3; 17 column-width: 60px; 18 column-height: 60px; 19 column-gap: 10px; 20 row-gap: 10px; 21 column-rule-width: 10px; 22 column-rule-style: solid; 23 column-rule-color: blue; 24 row-rule-width: 10px; 25 row-rule-style: solid; 26 row-rule-color: gold; 27 column-wrap: wrap; 28 column-rule-break: intersection; 29 column-rule-interior-inset-start: 0; 30 column-rule-interior-inset-end: 0px; 31 column-rule-edge-inset-end: -5px; 32 row-rule-break: intersection; 33 row-rule-edge-inset-end: 5px; 34 gap-rule-overlap: column-over-row; 35 } 36 p { 37 background: rgb(96 139 168 / 0.2); 38 height: 60px; 39 margin: 0px; 40 } 41 </style> 42 <div class="container"> 43 <p></p> 44 <p></p> 45 <p></p> 46 <p></p> 47 <p></p> 48 <p></p> 49 </div>