gpt4 book ai didi

CSS 网格不考虑 minmax 中的最小值以及自动调整

转载 作者:行者123 更新时间:2023-11-28 11:52:02 26 4
gpt4 key购买 nike

您好,我正在尝试创建具有该行为的响应列。列的宽度可以在 335 像素或 540 像素之间。

但是当我使用 grid-template-columns: repeat(auto-fit, minmax(335px, 540px)) 时,似乎只考虑了 540px。

如果有 700px 可用,我想将 3 个元素布置在 2 列中。

.box {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(335px, 540px));
grid-gap: 10px;
row-gap: 10px;
}

.item {
background: red;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<div class="box">
<div class="item item1">1</div>
<div class="item item2">2</div>
<div class="item item3">3</div>
</div>
</body>
</html>

最佳答案

考虑在您的元素上使用 max-width,并在 minmax() 中使用 1fr

.box {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(335px, 1fr));
grid-gap: 10px;
}

.item {
background: red;
max-width: 540px;
}
<div class="box">
<div class="item item1">1</div>
<div class="item item2">2</div>
<div class="item item3">3</div>
</div>

关于CSS 网格不考虑 minmax 中的最小值以及自动调整,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59142033/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com