gpt4 book ai didi

html - Angular Material嵌套列高度计算

转载 作者:太空宇宙 更新时间:2023-11-04 10:53:05 25 4
gpt4 key购买 nike

更新

在最新的 Firefox 和 Edge 中似乎出现了预期的行为 - 这可能是 Chrome 独有的问题(不敢相信我输入了那个...)

Here是说明问题的codepen。这是代码:

HTML

<div class="thingone" layout="column" flex="100" layout-fill>
<div class="thingtwo" layout="column" flex="75">
<div class="thingfour" layout="column" flex="25"></div>
<div class="thingfive" layout="column" flex="75"></div>
</div>
<div class="thingthree" layout="column" flex="25"></div>
</div>

CSS

.thingone {
background-color: red;
}
.thingtwo {
background-color: blue;
border: 10px solid black;
}
.thingthree {
background-color: green;
border: 10px solid white;
}
.thingfour {
background-color: yellow;
}
.thingfive {
background-color: orange;
}

我的最终目标是看到总共三个栏 - 前两个包裹在一个栏中,占据父级可用区域的 75%,最后一个仅占父级可用区域的 25%。前两个条形应分别占其父级区域的 25% 和 75%。

正如您从 codepen 中看到的那样,我很接近,但子列不遵守其 25% 和 75% 的 flex 分配。作为一个简单的例子,我很难理解为什么。

理想情况下,我想要一个不涉及行的解决方案(因为此示例的真实 UI 建模需要列),除非列嵌套在行中。

也许更重要的是 - 解释这里发生的事情的简单方法是什么?在处理 flex 中的嵌套列时是否必须应用“规则”(例如始终为父元素提供显式高度分配)?

谢谢!

最佳答案

该问题的解决方案是在尝试让元素填充可用的垂直空间时不在“thingtwo”元素上使用“layout-fill”属性。 'layout-fill' 指定了 min-height CSS 属性以及似乎导致布局问题的高度属性。

对于遇到类似问题的人,这里是解决方案:

HTML

<div class="thingone" layout="column" flex="100">
<div class="thingtwo" layout="column" flex="75">
<div class="thingfour" layout="column" flex="25"></div>
<div class="thingfive" layout="column" flex="75"></div>
</div>
<div class="thingthree" layout="column" flex="25"></div>
</div>

CSS

.thingone {
background-color: red;
height: 100%;
}
.thingtwo {
background-color: blue;
border: 10px solid black;
height: 100%;
}
.thingthree {
background-color: green;
border: 10px solid white;
}
.thingfour {
background-color: yellow;
}
.thingfive {
background-color: orange;
}

关于html - Angular Material嵌套列高度计算,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34860279/

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