Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<link rel="help" href="https://drafts.csswg.org/css-grid/">
<link rel="match" href="grid-overflowing-item-below-container-is-painted-ref.html">
<meta name="assert" content="A grid item in a zero-height grid container overflows its bottom edge and must still be painted.">
<style>
body {
margin: 0;
}
.grid {
width: 100px;
height: 0;
display: grid;
grid-template-columns: auto;
grid-template-rows: auto;
}
.item {
grid-column: 1 / 2;
grid-row: 1 / 2;
width: 100px;
height: 100px;
background-color: green;
}
</style>
<div class="grid">
<div class="item"></div>
</div>