如果列少于指定的列,则使网格填充剩余空间

问题描述 投票:0回答:1

我正在创建一个使用网格显示数据的卡。我需要最多允许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

css css-grid
1个回答
0
投票

替换grid-template-columns: repeat(8, auto);

行与

grid-template-columns: repeat(auto-fit, minmax(1rem,1fr));

自动调整值将解决您的问题

© www.soinside.com 2019 - 2024. All rights reserved.