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/grid-lanes/row-empty-grid-lanes-container-003.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Grid Lanes Test: intrinsic inline size of an empty row grid-lanes container</title>
<link rel="author" title="Yanling Wang" href="mailto:yanlingwang@microsoft.com">
<link rel="match" href="row-empty-grid-lanes-container-003-ref.html">
<style>
.grid-lanes {
display: grid-lanes;
grid-template-rows: auto;
width: min-content;
padding: 10px;
border: 5px solid gray;
background: gray;
}
</style>
</head>
<body>
<p>Test passes if there is a 30px gray square below.</p>
<div class="grid-lanes"></div>
</body>
</html>