1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 02:27:44 +00:00

Tests/LibWeb: Split input/grid/minmax.html into smaller tests

This commit is contained in:
Aliaksandr Kalenik 2023-05-09 00:27:17 +03:00 committed by Andreas Kling
parent 0dcc93ed3d
commit f2323b5b99
10 changed files with 130 additions and 239 deletions

View file

@ -0,0 +1,19 @@
<style>
.container {
display: grid;
background-color: lightsalmon;
grid-template-columns: minmax(200px, 1fr) minmax(100px, 200px) minmax(200px, 1fr);
}
.one {
background-color: lightblue;
}
.two {
background-color: yellowgreen;
}
.three {
background-color: palevioletred;
}
</style><div class="container"><div class="one">1</div><div class="two">2</div><div class="three">3</div></div>