mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 09:45:06 +02:00
14 lines
308 B
HTML
14 lines
308 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
.container {
|
|
width: 300px;
|
|
display: grid;
|
|
grid-template-columns: 100px;
|
|
grid-template-rows: 100px;
|
|
}
|
|
|
|
.item {
|
|
background-color: purple;
|
|
grid-column: span 2;
|
|
}
|
|
</style><div class="container"><div class="item"></div></div> |