ladybird/Tests/LibWeb/Layout/input/grid/grid-template-areas-basics.html
2025-05-13 03:49:32 +03:00

30 lines
No EOL
687 B
HTML

<!DOCTYPE html>
<style>
.container {
display: grid;
background-color: lightsalmon;
grid-template-columns: 1fr 1fr;
grid-template-areas:
"left right-top"
"left right-bottom";
}
.item {
background-color: lightblue;
}
.right-bottom {
background-color: lightpink;
grid-area: right-bottom / right-bottom / right-bottom / right-bottom;
}
.left {
background-color: lightgreen;
grid-area: left;
}
.right-top {
background-color: lightgrey;
grid-column-end: right-top;
}
</style><div class="container"><div class="item right-bottom">right-bottom</div><div class="item left">left</div><div class="item right-top">right-top</div></div>