gpt4 book ai didi

html - 如何将两个左对齐和右对齐文本的底部与父容器的底部对齐?

转载 作者:行者123 更新时间:2023-11-28 19:01:18 25 4
gpt4 key购买 nike

假设您有这个:

<div class="parent_with_height200px">
<div class="left">This is the left floated text, size 12px</div>
<div class="right">This is the right floated text, size 40px</div>
</div>

如何让两个文本“立”在父 div 的底部,使它们的基线彼此对齐?

改css/html完全没问题,这就是我想要的结果。

最佳答案

正如 feela 所说,使用职位是您实现这一目标的方式。

.parent_with_height200px {
height: 200px;
position: relative;
background-color: #DDDDDD;
}

.left {
width: 50%;
position: absolute;
bottom: 0px;
left: 0px;
background-color: #999999;
}

.right {
width: 50%;
position: absolute;
bottom: 0px;
right: 0px;
background: #444444;
}

在这里查看输出:Example

关于html - 如何将两个左对齐和右对齐文本的底部与父容器的底部对齐?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5637078/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com