让第二个浮动 div 填充容器 div 内其余水平空间的问题

发布于 2024-11-16 09:03:06 字数 383 浏览 0 评论 0原文

正如标题所解释的,我有一个容器 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

乱了心跳 2024-11-23 09:03:06

在“有边框的 div”上,删除 float: left 并添加 overflow: hide

有关演示和说明,请参阅:填充 div 的空间


我刚刚用 IE 检查了你的页面。您没有文档类型,因此由于 怪癖模式,您的页面已无可救药地损坏。

通过添加以下内容(HTML5 文档类型)作为 HTML 的第一行来解决第二个问题:

<!DOCTYPE html>

On your "bordered div", remove float: left and add overflow: 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:

<!DOCTYPE html>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文