Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-grid/layout-algorithm/grid-track-ignores-max-size-001.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css">
<link rel="match" href="../../reference/ref-filled-green-100px-square-only.html">
<meta name="assert" content="This test verifies that when resolving the row sizes, grid container's max-block-size is ignored.">
<style>
.grid {
display: grid;
inline-size: 100px;
block-size: auto;
max-block-size: 10px;
}
.item {
background: green;
min-height: 0;
font: 100px/1 Ahem;
color: rgba(255, 255, 255, 0);
}
</style>
<p>Test passes if there is a filled green square.</p>
<div class="grid">
<div class="item">X</div>
</div>