1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 16:45:09 +00:00
serenity/Tests/LibWeb/Layout/input/grid/minmax-1.html

15 lines
No EOL
320 B
HTML

<style>
.container {
display: grid;
background-color: lightsalmon;
grid-template-columns: minmax(150px, 300px) minmax(150px, 300px);
}
.one {
background-color: lightblue;
}
.two {
background-color: yellowgreen;
}
</style><div class="container"><div class="one">1</div><div class="two">2</div></div>