3

我有一种感觉,这可能是不可能的,但我希望有人会证明我错了。

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

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。我最接近的解决方案(以及我目前正在使用的)是100% 高度 div 内的两个垂直 div,我在其中强制第一个孩子的高度,但这并不理想。

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

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

4

1 回答 1

3

所以,有一些技巧可以得到这种外观。简单的方法是overflow: hidden.snippet-text-section上设置。这只会隐藏任何悬在边缘的内容。但是,这将隐藏任何悬在边缘的内容,所以它是一把双刃剑。

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

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

现场演示。对此的支持有限,但对未来的支持要好得多。如果浏览器不支持,您可以通过modernizr(或您自己)进行功能支持检查,然后回退到overflow: hidden;或其他方法。

于 2013-10-02T15:34:51.963 回答