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

Fixes the issue that before "automatic minimum size" were used to size flexible tracks even though specification says is should be "minimum contribution"
15 lines
No EOL
293 B
HTML
15 lines
No EOL
293 B
HTML
<!doctype html><style>
|
|
* {
|
|
border: 1px solid black;
|
|
}
|
|
body {
|
|
display: grid;
|
|
grid-template-rows: 1fr;
|
|
width: 200px;
|
|
}
|
|
.item {
|
|
width: 100px;
|
|
height: 50px;
|
|
background: orange;
|
|
}
|
|
</style><body><div class="item"></div> |