mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-22 08:00:45 +00:00
14 lines
No EOL
308 B
HTML
14 lines
No EOL
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> |