gpt4 book ai didi

html - 两个垂直的子元素需要适应父元素的 100% 高度,都是动态高度

转载 作者:可可西里 更新时间:2023-11-01 13:12:12 27 4
gpt4 key购买 nike

我觉得这可能是不可能的,但我希望有人能证明我是错的。

我有一个非固定高度的父元素(虽然它可能是,但我认为它没有帮助)。其中有两个 child ,垂直堆叠。第一项的高度是未知的。我希望第二个元素占据剩余的高度。

HTML:

<div class="container">
<a class="snippet" href="#">
<img class="example-image" src="example-image.png">
<div class="snippet-text-section">
<div class="snippet-title">Title for the item - could be one or two lines long</div>
<div class="snippet-text">Rest of the text, filling the remaining space.</div>
</div>
</a>
</div>

CSS:

* {
padding: 0;
margin: 0;
}

.container{
position:relative;
}

.snippet {
display: block;
border-radius: 5px;
background-color: #ddd;
color:black;
overflow:hidden;
}

img {
max-width: 100%;
vertical-align: middle;
display: inline-block;
height:100px;

}

.example-image {
width: 100%;
background-color: #111;
}

.date {
position: absolute;
top: -20px;
background-color: #1b1f52;
font-weight: bold;
padding:0px 2px;
color: white;
}

.snippet-text-section {
padding: 0px 20px 20px 0px;
position: absolute;
top: 0;
width: 100%;
height: 100%;
}

.snippet-title {
margin-bottom: 0;
font-size: 14px;
font-weight: 700;
background-color: rgba(255,0,0,0.8);
color: white;
padding: 0 5px;
border-radius: 0px 5px 0px 0px;
}

.snippet-text {
font-size: 20px;
line-height: 25px;
background-color: rgba(0,0,255,0.8);
color: white;
height: 100%;
padding: 0 5px;
border-radius: 0px 0px 5px 5px;
}

请注意,我在此处查看了很多 帖子。大多数类似的处理具有水平布局的子 div。我最接近的解决方案(以及我目前正在使用的)是 Two vertical divs within a 100% height div我强制第一个 child 的高度,但这并不理想。

我目前想知道是否有我错过的表格布局解决方案...

更新 现在是 2018 年,CS​​S3 支持无处不在。如果您正在寻找解决方案,那么答案就是 flexbox。请参阅下面 Ktash 回答的第二部分。

最佳答案

所以,有一些技巧可以让这个外观出现。简单的方法是设置overflow: hidden on the .snippet-text-section class .这只会隐藏悬在边缘的任何内容。但是,这将隐藏悬在边缘的任何内容,因此它是一把双刃剑。

最前沿的前瞻性方法是通过 flexbox 属性。为此,代码如下所示:

.snippet-text-section {
display: flex;
flex-direction: column;
}
.snippet-text {
flex: 1 1 auto;
}

Live demo .对此的支持有限,但对 future 会更好。您可以通过 modernizr(或您自己)进行功能支持检查,然后回退到 overflow: hidden; 或其他方法(如果浏览器不支持)。

关于html - 两个垂直的子元素需要适应父元素的 100% 高度,都是动态高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19140360/

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