Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<title>CSS Multi-column Layout Test: multicol with contained absolute position</title>
<link rel="help" href="https://www.w3.org/TR/css-multicol-1/">
<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>