CSS:将元素与底部对齐的问题

发布于 2024-12-28 12:16:59 字数 331 浏览 0 评论 0原文

我有关于垂直对齐元素的 CSS 问题。

请看一下这个网址: http://leisureonly.com/gravedigger/grow-up [可能是 NSFW]

如果您查看右侧的侧边栏,就会发现底部有一个块,上面有一个图像,上面写着“掘墓人”。我希望这个块在侧边栏的底部对齐。

我尝试将其包装在 div 中,并将 Vertical-align: Bottom 应用于掘墓人元素,但这并没有提供所需的结果。 这样做的正确方法是什么?

I'm having CSS question on aligning an element vertically.

Please take a look at this URL:
http://leisureonly.com/gravedigger/grow-up [Possibly NSFW]

If you look at the sidebar to the right, at the bottom there's a block with an image saying 'Grave Digger'. I want this block to be aligned at the bottom of the sidebar.

I've tried wrapping it in a div and applying vertical-align: bottom to the grave-digger element, but that doesn't offer the desired results.
What is the correct way of doing this?

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

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

发布评论

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

评论(2

岁吢 2025-01-04 12:16:59

好吧,首先,sidebar_gravedigger 位于 side_bar 的底部,所以,第一个问题是侧边栏那么长。如果您希望该元素位于容器的底部(side_bar 的父容器),我建议这样做:

.sidebar_gravedigger {
    position: absolute;
    bottom: 20px; /*container padding*/
}

#sidebar {
    padding-bottom: 500px; /*when the content is short, gravedigger won't be over the bar content.*/
}

.container{
    position: relative;
}

Well, beginning with, sidebar_gravedigger is at the bottom of the side_bar, so, the first problem is that the sidebar is that long. If you want that element positioned at the bottom of the container (the parent container of the side_bar), I recommend this:

.sidebar_gravedigger {
    position: absolute;
    bottom: 20px; /*container padding*/
}

#sidebar {
    padding-bottom: 500px; /*when the content is short, gravedigger won't be over the bar content.*/
}

.container{
    position: relative;
}
时光清浅 2025-01-04 12:16:59

像这样的事情可能会有所帮助:

.sidebar {
  position: relative;
  height: 100%;
}

.module {
  position: absolute;
  bottom: 0;
}

Something like this might help:

.sidebar {
  position: relative;
  height: 100%;
}

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