37 lines
959 B
HTML
37 lines
959 B
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<title>CSS Grid Test: Subgridded item changing its height dynamically</title>
|
|
<link rel="author" title="Ethan Jimenez" href="mailto:ethavar@microsoft.com">
|
|
<link rel="help" href="https://drafts.csswg.org/css-grid-2/#algo-overview">
|
|
<link rel="match" href="../../reference/ref-filled-green-100px-square.xht">
|
|
<style>
|
|
.wrapper {
|
|
background: red;
|
|
height: 100px;
|
|
width: 100px;
|
|
}
|
|
.grid {
|
|
display: grid;
|
|
grid-template-columns: 100px;
|
|
}
|
|
.subgrid {
|
|
display: grid;
|
|
grid-template-columns: subgrid;
|
|
overflow: clip;
|
|
}
|
|
.container { background: green }
|
|
</style>
|
|
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
|
|
<div class="wrapper">
|
|
<div class="grid">
|
|
<div class="subgrid">
|
|
<div class="container">
|
|
<div id="inner"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
document.body.offsetHeight;
|
|
document.getElementById('inner').style.height = '100px';
|
|
</script>
|