mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 08:18:11 +00:00

Implements some parts of "Resolve Intrinsic Track Sizes" algorithm from spec to make it more spec compliant.
23 lines
No EOL
394 B
HTML
23 lines
No EOL
394 B
HTML
<style>
|
|
#grid {
|
|
display: grid;
|
|
grid-template-columns:
|
|
auto
|
|
1fr;
|
|
grid-template-rows:
|
|
auto
|
|
auto;
|
|
}
|
|
|
|
#title {
|
|
grid-column: 1;
|
|
grid-row: 1;
|
|
background-color: lightblue;
|
|
}
|
|
|
|
#board {
|
|
grid-column: 2;
|
|
grid-row: 1;
|
|
background-color: lightgreen;
|
|
}
|
|
</style><div id="grid"><div id="title">Game Title</div><div id="board">Board</div></div> |