CSS:将 div 与父 div 的底部对齐

发布于 2024-12-23 16:15:27 字数 258 浏览 1 评论 0原文

http://jsfiddle.net/nFrp7/4/

我有一个类似于这个 jsfiddle 的布局创建的。我想知道如何让蓝色 div 将自身定位在底部(红色 div 延伸的位置),无论如何(但不使用 position:fixed;bottom: 0;< /代码>)。

我该怎么做?

http://jsfiddle.net/nFrp7/4/

I have a layout similar to this jsfiddle I have created. I want to know how to get the blue div to position itself at the bottom (where the red div extends) no matter what (but not using position: fixed; or bottom: 0;).

How can I do this?

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

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

发布评论

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

评论(5

夜空下最亮的亮点 2024-12-30 16:15:27

检查这个
http://jsfiddle.net/nFrp7/10/

使用换行 div 来包含所有布局 div并对蓝色 div 使用绝对定位

Check this
http://jsfiddle.net/nFrp7/10/

uses a wrap div to contain all the layout divs and uses absolute positioning for blue div

§普罗旺斯的薰衣草 2024-12-30 16:15:27

啊...您指的是 CSS 100% 高度问题。也看看这个:100% 最小高度 CSS 布局

Ah... you're referring to the CSS 100% height problem. Check this out too: 100% Min Height CSS layout.

子栖 2024-12-30 16:15:27

在所有内容周围放置一个包装器 div 并对其应用 height:400px;position:relative; 。然后在蓝色 div 上使用 position:absolute;bottom:0;right:0;

Put a wrapper div around everything and apply height:400px; and position:relative; to it. Then use position:absolute;, bottom:0;, and right:0; on the blue div.

情绪少女 2024-12-30 16:15:27

嗯....

.right-main {
width: 100px;
height: 30px;
clear: both;
background-color: green;
}

清除左侧div?

由于一切都是浮动的,我认为如果没有一些定位,这是不可能的。

嗯,有这个... FIDDLE UPDATE

但它确实使用了定位。

hmm....

.right-main {
width: 100px;
height: 30px;
clear: both;
background-color: green;
}

Clear the left div?

Since EVERYTHING is a float, I don't think it's possible without some positioning.

Well there's this... FIDDLE UPDATE

But it does use positioning.

弥繁 2024-12-30 16:15:27

试试这个,

.right-main {
      width: 100px;
      **height: 400px;**
      background-color: green;
    **position: relative;**
    } 

.bottom-right {
      background-color: blue;
      **position:absolute;**
      **bottom: 0;**
    }

Try this,

.right-main {
      width: 100px;
      **height: 400px;**
      background-color: green;
    **position: relative;**
    } 

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