CSS 顶部和底部对齐
来实现此目的,
Col1 Col2
------------------------------------------------------------
- H1 Content aligned to top - Some Content -
- - -
- - -
- - -
- - -
- - -
- - -
- Some other content aligned to bot - -
------------------------------------------------------------
尝试通过相对/绝对定位和浮动Col2 驱动 Col1 的高度
当我在 Col1 内的项目上使用绝对 pos 时,我要么没有获得 col1 的高度,要么 col2 最终与 Col1 重叠。
有帮助吗?
谢谢
Trying to achieve this with relative/absolute positioning and floating
Col1 Col2
------------------------------------------------------------
- H1 Content aligned to top - Some Content -
- - -
- - -
- - -
- - -
- - -
- - -
- Some other content aligned to bot - -
------------------------------------------------------------
Col2 drives the height of Col1
I either don't get the height in col1 or col2 ends up overlapping Col1 when i use absolute pos on the items within Col1
Any help?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我拥有的最佳解决方案是使用固定高度的容器:
虽然我希望不指定高度,但它可以工作(请参阅“发生了什么”部分): AgileApps
Best solution I have is with a fixed-height container:
sort of works although I'd hoped not to specify a height - here it is working (see the "What's happening" section): AgileApps