mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 10:48:11 +00:00
19 lines
No EOL
412 B
HTML
19 lines
No EOL
412 B
HTML
<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> |