Files
ladybird/Tests/LibWeb/Layout/input/grid/auto-fit-is-invalid-when-min-and-max-are-both-not-definite.html
Aliaksandr Kalenik 090ac66af1 LibWeb: Repeat grid track sizing with minmax where both are not definite
...should be treated as invalid value.
2025-03-25 09:53:04 +00:00

11 lines
300 B
HTML

<style>
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(min-content, 1fr)); /* Invalid CSS value */
}
.item {
background-color: magenta;
border: 2px solid cyan;
height: 100px;
}
</style><div class="grid"><div class="item"></div><div class="item"></div></div>