两个垂直子元素需要适合100%父母的高度,两个动态高度

时间:2013-10-02 15:12:28

标签: html css css3 layout flexbox

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

我有一个非固定高度的父元素(尽管它可能是,我觉得它没有帮助)。 其中有两个孩子,垂直堆放。第一项的高度是不可知的。我希望第二项能够占用剩余的高度。

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答案的第二部分。

1 个答案:

答案 0 :(得分:3)

所以,有一些技巧可以让这个外观。简单的方法是设置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;或其他方法。