mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-22 16:09:23 +00:00
17 lines
No EOL
378 B
HTML
17 lines
No EOL
378 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
* {
|
|
font: 16px SerenitySans;
|
|
}
|
|
.container {
|
|
display: grid;
|
|
background-color: lightsalmon;
|
|
grid-template-columns: auto auto;
|
|
gap: calc(1vh + 10px) calc(10% - 10px);
|
|
}
|
|
|
|
.item {
|
|
background-color: palevioletred;
|
|
}
|
|
</style>
|
|
<div class="container"><div class="item" style="grid-column: 2 / span 1">1</div><div class="item">2</div></div> |