mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 15:48:12 +00:00
19 lines
No EOL
316 B
HTML
19 lines
No EOL
316 B
HTML
<!DOCTYPE html><style>
|
|
* {
|
|
border: 1px solid black;
|
|
}
|
|
body {
|
|
display: grid;
|
|
grid-template-rows: 1fr;
|
|
}
|
|
.foo {
|
|
width: 100px;
|
|
height: 100px;
|
|
grid-row: 1;
|
|
grid-column: 1;
|
|
}
|
|
.bar {
|
|
grid-row: 1;
|
|
grid-column: 1;
|
|
}
|
|
</style><body><div class="foo">foo</div><div class="bar">bar</div></div> |