CSS网格使用特定的项目高度作为最大行高度

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

我正在尝试防止边栏高度超过内容高度。“区域”将包含任何高度的图像,因此其高度不是固定的或事先未知。

function toggleTabsContent() {
	const display = document.querySelector('.content').style.display;
  if (display == "none") {
  	document.querySelector('.content').style.display = "block";
  } else {
  	document.querySelector('.content').style.display = "none";
  }
}
.grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-template-rows: 1fr auto;
  grid-template-areas:
    "tabs area"
    "footer footer";
}

.tabs {
  grid-area: tabs;
  background: #FF9800;
}

.area {
  grid-area: area;
  height: 200px;
  background: #673AB7;
}

.footer {
  grid-area: footer;
  background: #607D8B;
  height: 40px;
}

.content {
  height: 250px;
}
<button onclick="toggleTabsContent()">Make tabs taller/shorter</button>

<div class="grid">
  <div class="tabs">
    <div class="content" style="display: none"></div>
  </div>
  <div class="area"></div>
  <div class="footer"></div>
</div>

我想在“标签”高度大于“区域”高度时显示滚动条。

JSFiddle

css-grid
1个回答
0
投票

您可以将tabs的最大高度设置为area的高度

.tabs {
  grid-area: tabs;
  background: #FF9800;
  max-height: 400px;
  overflow: scroll;
}

我添加了很多H1元素,并且按照您想要的方式工作。

JS Fiddle

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