mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-03 23:25:20 +00:00
- Change min track sizing function to be "auto" when flex size is specified. - Never check if min track sizing funciton is flexible, because only max is allowed to be flexible. - Address FIXME in automatic_minimum_size to avoid regressions after making two fixes mentioned above.
12 lines
322 B
HTML
12 lines
322 B
HTML
<!doctype html><style>
|
|
* {
|
|
outline: 1px solid black;
|
|
}
|
|
body {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1000px;
|
|
}
|
|
nav {
|
|
background: pink;
|
|
}
|
|
</style><body><nav>Hello</nav> |