让第二个浮动 div 填充容器 div 内其余水平空间的问题
正如标题所解释的,我有一个容器 div,其中包含两个不同宽度的浮动 div。在这里查看它的实际情况(这是“酒店预订”部分):
http://experiencerapanui.com/ book_hotel.php?hotel_id=3
我为您设置了第二个 div 的边框。我需要这个第二个 div 来填充容器 div 的所有剩余空间。我无法固定第一个 div 的宽度,因为它的宽度根据不同酒店提供的服务而有所不同,但我仍然希望第二个 div(价格将出现的地方)填充所有剩余空间,而不是让它成为现实太拥挤了。
这个结果是如何实现的呢?
As the title explains, I have one container div, containing two floating divs of varying widths. See it in action here (it's the "Hotel booking" part):
http://experiencerapanui.com/book_hotel.php?hotel_id=3
I bordered the 2nd div for you. I need this 2nd div to fill out all the remaining space of the container div. I cannot fix the width of the first div, since the width of it varies depending on what the different hotels offer, but I still want the 2nd div (where the prices will appear) to fill out all the remaining space, to not make it so cramped.
How is this result achieved?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在“有边框的
div
”上,删除float: left
并添加overflow: hide
。有关演示和说明,请参阅:填充 div 的空间
我刚刚用 IE 检查了你的页面。您没有文档类型,因此由于 怪癖模式,您的页面已无可救药地损坏。
通过添加以下内容(HTML5 文档类型)作为 HTML 的第一行来解决第二个问题:
On your "bordered
div
", removefloat: left
and addoverflow: hidden
.For a demo and explanation, see: Fill the space of a div
I just checked your page with IE. You don't have a doctype, so your page is hopelessly broken thanks to Quirks Mode.
Resolve this second problem by adding this (the HTML5 doctype) as the very first line of your HTML: