1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 07:18:11 +00:00
serenity/Tests/LibWeb/Layout/input/grid/grid-gap-3.html
Aliaksandr Kalenik 0dcc93ed3d Tests/LibWeb: Split input/grid/gap.html into smaller tests
The file gap.html, which previously had multiple grid tests, has now
been divided into smaller files, each containing only one grid test.
It is going to make it easier to identify what inputs have been
affected by changes in layout code.
2023-05-09 06:37:30 +02:00

13 lines
No EOL
270 B
HTML

<style>
.container {
display: grid;
background-color: lightsalmon;
grid-column-gap: 20px;
grid-template-columns: 1fr 1fr;
}
.item {
background-color: palevioletred;
grid-column: 2;
}
</style><div class="container"><div class="item">1</div></div>