两个垂直子元素需要适合父元素的 100% 高度,都是动态高度
Posted
技术标签:
【中文标题】两个垂直子元素需要适合父元素的 100% 高度,都是动态高度【英文标题】:Two vertical child elements need to fit 100% height of parent, both dynamic heights 【发布时间】:2013-10-09 00:57:24 【问题描述】:我觉得这可能是不可能的,但我希望有人能证明我错了。
我有一个非固定高度的父元素(虽然它可能是,但我认为它没有帮助)。 里面有两个孩子,垂直堆叠。第一项的高度是不可知的。我希望第二个项目占据剩余的高度。
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,我在其中强制第一个孩子的高度,但这并不理想。
我目前想知道是否有我错过的表格布局解决方案...
更新现在是 2018 年,CSS3 支持无处不在。如果您正在寻找解决方案,答案就是 flexbox。请参阅下面 Ktash 答案的第二部分。
【问题讨论】:
所以..您不想想为第一个孩子设置高度,但仍希望第二个孩子占据剩余空间?如果你不知道第一个孩子的身高,你怎么知道还有多少剩余空间? @JoshC 在这种情况下,我有一盒例如100px 我不想溢出。该框有两个元素:标题和描述。我不能保证标题是一两行文字,所以我不知道它的高度。 【参考方案1】:因此,有一些技巧可以得到这种外观。简单的方法是设置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。对此的支持有限,但对未来的支持要好得多。如果浏览器不支持,您可以通过modernizr(或您自己)进行功能支持检查,然后回退到overflow: hidden;
或其他方法。
【讨论】:
以上是关于两个垂直子元素需要适合父元素的 100% 高度,都是动态高度的主要内容,如果未能解决你的问题,请参考以下文章
CSS使容器相对父元素垂直水平居中定位(父容器及子元素大小不确定)