Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-gaps/multicol/multicol-gap-decorations-013.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel="match" href="multicol-gap-decorations-013-ref.html">
<link rel="author" title="Javier Contreras" href="mailto:javiercon@microsoft.com">
<style>
body {
margin: 0px;
}
.mc {
position: absolute;
top: 0px;
width: 100px;
height: 100px;
columns: 2;
column-fill: auto;
column-gap: 10px;
column-rule-color: gold;
column-rule-width: 10px;
column-rule-style: solid;
column-rule-outset: -4px;
}
</style>
<div class="mc">
<div style="height: 400px; background: cyan;">
</div>
</div>