Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-contain/contain-inline-size-grid-auto-fit.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<link rel="author" title="Sammy Gill" href="mailto:sammy.gill@apple.com">
<link rel="match" href="../reference/ref-filled-green-100px-square-only.html">
<style>
.container {
width: 100px;
}
.grid {
display: grid;
height: 100px;
grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
contain: inline-size;
}
.grid-item {
background-color: green;
}
</style>
</head>
<body>
<p>Test passes if there is a filled green square.</p>
<div class="container">
<div class="grid">
<div class="grid-item">
</div>
</div>
</div>
</body>
</html>