父div要匹配最高子div的高度吗?
我正在制作一个带有“页面”div 的网站,其中包含左侧 div“导航”和右侧 div“内容”。我想让“页面”div 的高度(以便背景匹配)等于最高 div 的高度,“导航”或“内容”。
我该怎么做呢?
I'm making a website with a "page" div, and inside that contains the left div "navigation" and the right div "content". I want to make the height of the "page" div (so the background matches) equal to the height of the tallest div, either "navigation" or "content".
How would I go about doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
像这样写
html:
css:
write like this
html:
css:
我猜你正在浮动其他 div,否则情况总是如此。您也可以浮动父 div,或者在父 div 末尾添加
。这些技术中的任何一种都会导致父 div 与其子 div 一样大。
编辑:哎呀,错过了结束标签:)
I'm guessing you're floating the other divs, otherwise this would always be the case. You can either float the parent div as well, or add a
<div style='clear: both'></div>
just before the end of the parent div. Either of these techniques will cause the parent div to be as big as its children.EDIT: whoops, missed the end tag :)
这将帮助您
HTML
CSS
This will help you
HTML
CSS