Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-multicol/multicol-contained-absolute.html - WPT Dashboard Interop Dashboard
<!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>