Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-conditional/container-queries/multicol-inside-container.html - WPT Dashboard Interop Dashboard
<!doctype html>
<title>CSS Container Queries Test: Multicol inside size container</title>
<link rel="match" href="/css/reference/ref-filled-green-100px-square-only.html">
<style>
#container {
container-type: size;
width: 200px;
height: 100px;
}
@container (width <= 200px) {
#multicol {
column-count: 2;
column-gap: 0;
}
}
#green {
display: inline-block;
width: 100%;
height: 100px;
background-color: green;
vertical-align: bottom;
}
</style>
<p>Test passes if there is a filled green square.</p>
<div id="container">
<div id="multicol"><div id="green"></div></div>
</div>