垂直对齐

发布于 2024-10-16 10:15:10 字数 447 浏览 4 评论 0原文

我有以下代码:

<div style="height: 120px; background: none repeat scroll 0% 0% rgb(45, 144, 234); color: rgb(255, 255, 255); vertical-align: bottom;">
    <div style="vertical-align: bottom; height: 120px;">
        <h2 style="vertical-align: bottom; height: 120px;">text</h2>
    </div>
</div>

我无法将文本放置到嵌套 div 的底部。我无法使用 padding-top 或 margin-top,因为我偶尔会进行文本换行。

有人可以建议我吗?

I have the following code:

<div style="height: 120px; background: none repeat scroll 0% 0% rgb(45, 144, 234); color: rgb(255, 255, 255); vertical-align: bottom;">
    <div style="vertical-align: bottom; height: 120px;">
        <h2 style="vertical-align: bottom; height: 120px;">text</h2>
    </div>
</div>

I can't get the text to the bottom of the nested divs. I can't use padding-top or margin-top as I occasionally have text wrapping.

Can someone advice me?

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

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

发布评论

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

评论(2

哀由 2024-10-23 10:15:10
<div style="display:table-cell; vertical-align:bottom;">Personal Information</div>
<div style="display:table-cell; vertical-align:bottom;">Personal Information</div>
郁金香雨 2024-10-23 10:15:10
<div style="height: 120px;">
    <div style="height: 120px;">
        <h2 style="position: absolute; bottom: 0">text</h2>
    </div>
</div>

那应该有效。

现在,无论 h2 文本有多长,它都会保留在 div 的底部。

<div style="height: 120px;">
    <div style="height: 120px;">
        <h2 style="position: absolute; bottom: 0">text</h2>
    </div>
</div>

That should work.

It now doesn't matter how long the h2 text is, it stays at the bottom of yout div.

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