将 div 中的文本与底部对齐
我有两个相邻的 div,一个带有 float: right
,另一个带有 float: left
。左侧包含一张图像 (200x100px),右侧的 div 应包含文本。我想让右侧的 div 文本从 div 的左下角开始,而不是从左上角开始,这可能吗? 谢谢
I have two divs next to each other, one with float: right
and the other with float: left
. The one on the left contains an image (200x100px) and the div on the right should contain a text. I would like to have the text of the div on the right to start on the bottom left of the div instead of the top left, is that possible somehow?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以创建容器
position:relative
然后在里面创建一个 divposition:absolute;底部:0;左:0;
You can make the container
position: relative
then make a div inside withposition: absolute; bottom: 0; left: 0;
在跨度、段落或您要放置文本的任何内容上尝试此 css 规则:
Try this css rule on the span, paragraph or whatever you're placing the text in:
您可以尝试将以下 css 添加到您的 div 中:
you can try to add to your div this css: