垂直对齐在中
中
我有以下代码:
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
那应该有效。
现在,无论
h2
文本有多长,它都会保留在div
的底部。That should work.
It now doesn't matter how long the
h2
text is, it stays at the bottom of youtdiv
.