我正在创建一个使用网格显示数据的卡。我需要最多允许8列,但如果少于8列,则还应允许网格填充可用空间。
目前,我正在使用grid-template-columns:repeat(8,auto);它很好地用8列填充了空间,但是,例如,如果我有6列,它将在右侧保留一个空间。
*,
body,
html {
margin: 0;
box-sizing: border-box;
}
.card {
width: 100%;
height: 150px;
min-height: 100px;
background-color: #333333;
border-radius: 15px;
padding: 10px 10px;
overflow: hidden;
position: relative;
}
.gridWrapper {
display: grid;
grid-template-columns: repeat(8, auto);
grid-gap: 5px;
margin-bottom: 10px;
}
.gridItem {
display: flex;
flex-direction: column;
justify-content: center;
padding: 6px;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
label {
font-family: Helvetica;
font-size: 0.8em;
color: #76a8b0;
font-weight: 100;
}
p {
color: #ffffff;
font-family: Helvetica;
font-weight: 100;
}
.cardFooter {
display: flex;
flex-direction: row;
justify-content: center;
padding: 10px 0 5px 0;
position: absolute;
background: #333333;
bottom: 0;
width: 100%;
}
<div class="card" id="card">
<div class="gridWrapper">
<div class="gridItem">
<label for="title">Label</label>
<p>ContentContentContent</p>
</div>
<div class="gridItem">
<label for="title">Label</label>
<p>Content</p>
</div>
<div class="gridItem">
<label for="title">Label</label>
<p>Content</p>
</div>
<div class="gridItem">
<label for="title">Label</label>
<p>Content</p>
</div>
<div class="gridItem">
<label for="title">Label</label>
<p>Content</p>
</div>
<div class="gridItem">
<label for="title">Label</label>
<p>Content</p>
</div>
<!-- <div class="gridItem">
<label for="title">Label</label>
<p>Content</p>
</div>
<div class="gridItem">
<label for="title">Label</label>
<p>Content</p>
</div> -->
</div>
</div>
我在https://jsfiddle.net/eh7g8Lx1/1/创建了一个jsfiddle
替换grid-template-columns: repeat(8, auto);
行与
grid-template-columns: repeat(auto-fit, minmax(1rem,1fr));
自动调整值将解决您的问题