Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE HTML>
<!--
Any copyright is dedicated to the Public Domain.
-->
<html><head>
<link rel="author" title="Sean Feng" href="mailto:sefeng@mozilla.com">
<title>CSS Grid Test: Nested grid contains an item that overflows the viewport</title>
<link rel="help" href="https://drafts.csswg.org/css-grid">
<link rel="match" href="nested-grid-item-block-size-001-ref.html">
<style>
.container {
display: grid;
grid-auto-flow: column;
list-style: none;
padding: 0px;
margin: 0px;
}
img {
block-size: 55vw;
aspect-ratio: 2/1;
}
</style>
</head>
<body>
<ul class="container">
<li>
<div style="display: inline-block;">
<div style="display: grid;">
<img src="support/colors-8x16.png">
</div>
</div>
</li>
</ul>
</body>
</html>