我有一种感觉,这可能是不可能的,但我希望有人会证明我错了。
我有一个非固定高度的父元素(虽然它可能是,但我认为它没有帮助)。里面有两个孩子,垂直堆叠。第一项的高度是不可知的。我希望第二个项目占据剩余的高度。
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 年,CSS3 支持无处不在。如果您正在寻找解决方案,答案就是 flexbox。请参阅下面 Ktash 答案的第二部分。