css - 我有一个嵌套浮动 div,如何让它填充整个 100%?

发布于 2024-12-18 01:01:00 字数 376 浏览 0 评论 0原文

我有一个浮动的 div。 该 div 嵌套在一个 html 元素内,该元素从其子元素之一接收其高度。 如何让我的 div 粘在底部?

这是我的问题的示例。我想把我的“大家好”传达给家长。

<div style="overflow:hidden;border:1px solid green;clear:both">

<div style="float:left">
  <p> Hi All </p>      
</div>

<div style="height:150px;width:50px; background-color:red;float:left">
</div>

I've got a floating div.
That div is nested inside an html element that recieves its height from one of its children.
How do I get my div to stick to the bottom?

Here's a sample of my problem. I want to get my "Hello all" to the bottom of the parent.

<div style="overflow:hidden;border:1px solid green;clear:both">

<div style="float:left">
  <p> Hi All </p>      
</div>

<div style="height:150px;width:50px; background-color:red;float:left">
</div>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

俯瞰星空 2024-12-25 01:01:00

我把这个放在一起。这是CSS:

#cont {
    margin:5px;
    overflow:hidden;
    border:1px solid green;
    clear:both;
}
#rel {
    height:150px;
    position:relative;
    display:inline-block;
    width:50px;
}
#abs {
    position:absolute;
    bottom:0;
}
#red {
    height:150px;
    width:50px;
    background-color:red;
    display:inline-block;
}

和你的HTML:

<div id="cont">
    <div id="rel">
        <div id="abs">
            <p>Hi All</p>      
        </div>
    </div>
    <div id="red">
    </div>
</div>

我仍然使用位置:相对/绝对技巧,但我不是浮动div,而是将它们设为内联块。这样,它与浮动它们时具有相同的效果。

I put this together. Here's the CSS:

#cont {
    margin:5px;
    overflow:hidden;
    border:1px solid green;
    clear:both;
}
#rel {
    height:150px;
    position:relative;
    display:inline-block;
    width:50px;
}
#abs {
    position:absolute;
    bottom:0;
}
#red {
    height:150px;
    width:50px;
    background-color:red;
    display:inline-block;
}

And your HTML:

<div id="cont">
    <div id="rel">
        <div id="abs">
            <p>Hi All</p>      
        </div>
    </div>
    <div id="red">
    </div>
</div>

I'm still using the position:relative/absolute trick, but instead of floating the divs, I'm making them inline-blocks. This way it has the same effect as when you float them.

寄与心 2024-12-25 01:01:00

您可以使用 position:absolute 使元素粘在其父元素的底部:

<div style="overflow:hidden;border:1px solid green;clear:both; position: relative;">

<div style="position: absolute; bottom: 0; background: #fff;">
  <p> Hi All, if you make this long it will stick to the bottom of the parent container.</p>      
</div>

<div style="height:150px;width:50px; background-color:red;float:left">
</div>
</div>

注意容器元素上的 position:relative (以便子元素使用position:absolute 其父级的 position 必须设置为 static 以外的值(默认情况下)。

这是一个jsfiddle: http://jsfiddle.net/jasper/mJXxM/2/

You can use position:absolute to make an element stick to the bottom of its parent:

<div style="overflow:hidden;border:1px solid green;clear:both; position: relative;">

<div style="position: absolute; bottom: 0; background: #fff;">
  <p> Hi All, if you make this long it will stick to the bottom of the parent container.</p>      
</div>

<div style="height:150px;width:50px; background-color:red;float:left">
</div>
</div>

Notice the position:relative on the container element (in order for a child element to use position:absolute its parent must have its position set to something other than static which is the default).

Here is a jsfiddle: http://jsfiddle.net/jasper/mJXxM/2/

满栀 2024-12-25 01:01:00

这是否符合您的要求(按照丹的建议):

<div style="overflow:hidden;border:1px solid green;clear:both; position: relative;">

<div style="position: absolute; bottom: 0px">
  <p> Hi All </p>      
</div>

<div style="height:150px;width:50px; background-color:red;float:left"></div>

Does this do what you want (as suggested by Dan):

<div style="overflow:hidden;border:1px solid green;clear:both; position: relative;">

<div style="position: absolute; bottom: 0px">
  <p> Hi All </p>      
</div>

<div style="height:150px;width:50px; background-color:red;float:left"></div>
海的爱人是光 2024-12-25 01:01:00

一半的问题可能是由于您有一个额外的

标记而没有结束

标记。

Half of your problem would probably be due to the fact that you have an extra <div> tag with no closing </div> tag.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文