multicol-gap-decorations-003.html (805B)
1 <!DOCTYPE html> 2 <title> 3 CSS Gap Decorations: Multicolumn gap decorations painted basic case. 4 </title> 5 <link rel="help" href="https://drafts.csswg.org/css-gaps-1/"> 6 <link rel="match" href="multicol-gap-decorations-003-ref.html"> 7 <link rel="author" title="Javier Contreras" href="mailto:javiercon@microsoft.com"> 8 <style> 9 body { 10 margin: 0px; 11 } 12 13 #container { 14 border: 2px solid rgb(96 139 168); 15 width: 200px; 16 column-count: 3; 17 column-width: 60px; 18 column-gap: 10px; 19 column-rule-width: 10px; 20 column-rule-style: solid; 21 column-rule-color: blue; 22 } 23 24 p { 25 background: rgb(96 139 168 / 0.2); 26 height: 200px; 27 margin: 0px; 28 } 29 </style> 30 31 <div id="container"> 32 <p></p> 33 <p></p> 34 <p></p> 35 </div>