mirror of
https://github.com/RGBCube/serenity
synced 2025-05-25 22:45:06 +00:00

This giant grid test has been a source of problems while iterating on GFC for a long time. Let's split it into smaller tests to make it easier to identify issues without needing further reductions on the test.
18 lines
No EOL
330 B
HTML
18 lines
No EOL
330 B
HTML
<style>
|
|
* {
|
|
border: 1px solid black;
|
|
}
|
|
|
|
.grid-container {
|
|
display: grid;
|
|
grid-template-rows: repeat(5, 20px);
|
|
}
|
|
|
|
.a {
|
|
grid-row-end: span 2;
|
|
}
|
|
|
|
.b {
|
|
grid-row-end: span 3;
|
|
}
|
|
</style><div class="grid-container"><div class="a">1</div><div class="b">2</div></div> |