mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-22 08:00:45 +00:00
19 lines
No EOL
406 B
HTML
19 lines
No EOL
406 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
.container {
|
|
display: grid;
|
|
background-color: lightsalmon;
|
|
|
|
/* Invalid minmax value as can't have a flexible length as a minimum value. */
|
|
grid-template-columns: minmax(1fr, 100px) 1fr 1fr;
|
|
}
|
|
|
|
.one {
|
|
background-color: lightblue;
|
|
}
|
|
|
|
.two {
|
|
background-color: yellowgreen;
|
|
}
|
|
</style>
|
|
<div class="container"><div class="one">1</div><div class="two">2</div></div> |