mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-22 08:00:45 +00:00
24 lines
345 B
HTML
24 lines
345 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
.a {
|
|
display: grid;
|
|
grid-template-columns: auto 1fr;
|
|
}
|
|
|
|
.b {
|
|
width: 48px;
|
|
height: 48px;
|
|
background-color: red;
|
|
}
|
|
|
|
.c {
|
|
width: 48px;
|
|
height: 48px;
|
|
background-color: blue;
|
|
grid-column-end: -1;
|
|
}
|
|
</style>
|
|
<div class="a">
|
|
<div class="b"></div>
|
|
<div class="c"></div>
|
|
</div>
|