mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-26 18:09:45 +00:00
16 lines
No EOL
332 B
HTML
16 lines
No EOL
332 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
.container {
|
|
display: grid;
|
|
background-color: lightsalmon;
|
|
grid-template-columns: fit-content(150px) fit-content(150px);
|
|
}
|
|
|
|
.one {
|
|
background-color: lightblue;
|
|
}
|
|
|
|
.two {
|
|
background-color: yellowgreen;
|
|
}
|
|
</style><div class="container"><div class="one">1</div><div class="two">2</div></div> |