我有这样的事情:
<section>
<h3>Header:</h3>
<p>My text which could span over several lines.</p>
</section>
section
{
background: #5E5E5E;
overflow:hidden;
}
h3
{
background: #B31B1B;
padding: 13px;
width: 174px;
float:left;
}
p
{
margin: 13px 13px 13px 213px;
}
我希望标题背景扩展到该部分的底部,但是当<p>
标记中的文本超过一行时,它不会。
除了使用人造柱技术,我还能做些什么?
答案 0 :(得分:3)
你绝对可以放置<h3>
而不是浮动它。像这样:
section {
background: #5E5E5E;
position: relative;
overflow: hidden;
}
h3 {
background: #B31B1B;
padding: 13px;
width: 174px;
position: absolute;
top: 0;
left: 0;
bottom: 0;
}
p {
margin: 13px 13px 13px 213px;
}
实例:http://jsfiddle.net/ambiguous/cZ3rh/
如果<h3>
最终比<h3>
更高,绝对定位<p>
可能会造成麻烦,因为绝对定位的元素对父母的身高没有贡献:
我现在想不出这个案例的合适解决方案。
答案 1 :(得分:2)
您可以将背景应用于section
而不是h3
吗?
答案 2 :(得分:2)
另一种方法是将背景移至SECTION
和P
标记。
section {
background: #B31B1B;
overflow:hidden;
padding: 0;
}
h3 {
padding: 13px;
width: 174px;
float:left;
}
p {
margin: 0;
background: #5E5E5E;
padding: 13px;
margin-left: 213px;
}
答案 3 :(得分:1)
尝试在h3中使用min-height = 100%!
答案 4 :(得分:1)
只需将h3元素的高度设置为100%。
h3
{
background: #B31B1B;
padding: 13px;
width: 174px;
float:left;
height: 100%;
}