1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 08:18:11 +00:00
serenity/Tests/LibWeb/Layout/input/grid/grid-gap-1.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

24 lines
No EOL
467 B
HTML

<style>
.grid-container {
display: grid;
background-color: lightsalmon;
grid-template-columns: auto auto;
gap: 50px 100px;
}
.one {
background-color: lightblue;
}
.two {
background-color: yellowgreen;
}
.three {
background-color: palevioletred;
}
.four {
background-color: lightseagreen;
}
</style><div class="grid-container"><div class="one">1</div><div class="two">2</div><div class="three">3</div><div class="four">4</div></div>