左、中、右对齐同一行底部的 div
我想在同一行显示三个 div。这三个都有不同的宽度和高度,并且它们不是直文本。我想左对齐一个(一直到左边),右对齐另一个(一直到右边),并将第三个居中(在包含 div 的中间,在这种情况下是整个页面) )。
此外,我希望这三个 div 与包含的 div 的底部垂直对齐。我的解决方案将它们垂直对齐到包含 div 的顶部。
处理这个问题的最佳方法是什么?
I have three divs that I would like to display on the same line. Each of the three has different widths and heights, and they are not straight text. I'd like to left-align one (all the way to the left), right-align another (all the way to the right), and center the third (in the middle of the containing div, the whole page in this case).
In addition, I'd like the three divs to be vertically aligned to the bottom of the containing div. The solution I have vertically aligns them to the top of the containing div.
What is the best way to handle this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
通过将容器 div 设置为
position:relative
并将子 div 设置为position:absolute
,您可以在容器的范围内对 div 进行绝对定位。这很容易,因为您可以使用
bottom:0px
将所有内容垂直对齐到容器的底部,然后使用左/右样式沿水平轴定位。我设置了一个工作 jsFiddle: http://jsfiddle.net/Damien_at_SF/KM7sQ/5/ 代码如下:
HTML:
CSS:
注意:对于“center”div,margin-left = 1/2 div 的宽度:)
希望有帮助:)
By setting your container div to
position:relative
and the child divs toposition:absolute
you can absolute position the divs within the confines of the container.This makes it easy, as you can use
bottom:0px
to align all vertically to the bottom of the container, and then use left/right styling to position along the horizontal axis.I set up a working jsFiddle: http://jsfiddle.net/Damien_at_SF/KM7sQ/5/ and the code follows:
HTML:
CSS:
Note: For the "center" div, the margin-left = 1/2 the width of the div :)
Hope that helps :)
我的技术类似于@Damien-at-SF:
我试图严格证明您要求的所有要求。
现场演示
HTML:
CSS:
My technique is similar to @Damien-at-SF:
I tried to rigorously demonstrate all the requirements you asked for.
Live Demo
HTML:
CSS:
为了使你的中心 div 有弹性,你可以这样做:
To make your center div elastic, you could do something like:
对第一个答案的进一步增强:
在“center”div CSS中,您需要添加:
在“right”div CSS中,您需要添加:
...以完美实现左/中/右对齐。
A further enhancement to the first answer:
In the "center" div CSS, you need to add:
In the "right" div CSS, you need to add:
... to perfectly achieve left/center/right aligning.
在包含的 div 上设置
position:relative
,在 3 个 div 上设置position:relative
,并将 3 个 div 的bottom
属性设置为 <代码>0:Set
position: relative
on the containing div, setposition: relative
on your 3 divs, and set thebottom
attribute of the 3 divs to0
:您可以使用
align-items: flex-end< /code>
使 Flexbox 项目在底部垂直对齐。
You can use
align-items: flex-end
to make the flexbox items aligned vertically at the bottom.