mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 12:48:10 +00:00

Implements "Distribute space beyond limits" step from: https://www.w3.org/TR/css-grid-2/#distribute-extra-space
10 lines
No EOL
227 B
HTML
10 lines
No EOL
227 B
HTML
<!DOCTYPE html><style>
|
|
.container {
|
|
display: grid;
|
|
grid-template-columns: minmax(min-content, 0px);
|
|
}
|
|
|
|
.item {
|
|
background-color: aquamarine;
|
|
}
|
|
</style><div class="container"><div class="item">one</div></div> |