要使容器扩展到包含行的完整(动态)高度,可以使用以下方法:
.container {
display: flex;
flex-direction: column;
height: 100%;
}
.container {
display: grid;
grid-template-rows: auto;
height: 100%;
}
var container = document.querySelector('.container');
var rows = container.querySelectorAll('.row');
var totalHeight = 0;
rows.forEach(function(row) {
totalHeight += row.offsetHeight;
});
container.style.height = totalHeight + 'px';
以上是使容器扩展到包含行的完整(动态)高度的几种方法。根据具体情况选择适合的方法即可。
参考链接:
领取专属 10元无门槛券
手把手带您无忧上云