Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<title>CSS Multi-column Layout Test: multicol with contained absolute position</title>
<link rel="match" href="multicol-contained-absolute-ref.html">
<meta name="assert" content="Absolute position contained in multicol should have correct containing block.">
<div style="columns: 2">
<div style="position: relative; height: 200px">
<div style="overflow: hidden">
<div style="position: absolute; width: 100%; height: 200px; background: green"></div>
</div>
</div>
</div>