【发布时间】:2018-01-02 04:30:10
【问题描述】:
Chrome 提供 invalid property value 并且不尊重 CSS:
grid-template-columns: repeat(auto-fill, minmax(auto, 1fr));
当auto 替换为min-content 和max-content 时也会失败。
当auto 被替换为固定值时,它会按预期工作,例如
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
这很令人惊讶,因为repeat 和minmax 都支持关键字。
html很简单
<div class='wrapper>
<div>...</div>
<div>...</div>
</div>
和css
.wrapper {
display: grid
grid-template-columns: repeat(auto-fill, minmax(auto, 1fr));
}
【问题讨论】: