mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 05:58:11 +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.
15 lines
No EOL
293 B
HTML
15 lines
No EOL
293 B
HTML
<style>
|
|
* {
|
|
border: 1px solid black;
|
|
grid-template-columns: 1fr 1fr;
|
|
}
|
|
|
|
.grid-container {
|
|
display: grid;
|
|
}
|
|
|
|
.a {
|
|
grid-column: 1 / span 3;
|
|
grid-row: 1;
|
|
}
|
|
</style><div class="grid-container"><div class="a">1</div><div>2</div></div> |