mirror of
https://github.com/servo/servo.git
synced 2025-06-27 18:43:40 +01:00
12 lines
541 B
HTML
12 lines
541 B
HTML
<!DOCTYPE html>
|
|
<title>CSS Multi-column Layout Test: multicol with overflow-clipped positioned content</title>
|
|
<link rel="help" href="https://www.w3.org/TR/css-multicol-1/">
|
|
<link rel="match" href="multicol-overflow-clip-positioned-ref.html">
|
|
<meta name="assert" content="Overflow clip for positioned content should work under multicol.">
|
|
<div style="columns: 2">
|
|
<div style="height: 200px; overflow: hidden">
|
|
<div style="height: 800px; background: blue; position: relative"></div>
|
|
</div>
|
|
<div style="height: 200px"></div>
|
|
</div>
|
|
|