无法让 div 扩展高度以包含其中的内容
我不知道如何让中间容器 div 的高度扩展以适应内部数据。我迷失在诸如 height:100% 等建议中。任何人都知道我需要添加什么 css 来修复以下问题:
http://www.tippycanoetoo.com/pillows-rugs-throws.html
http://www.tippycanoetoo.com/emma-20-5-square- throw-pillow-1.html
(看起来在 Firefox 和 IE7 中可以,但在 Chrome、Safari 和 IE8 中则不行 - 在 IE8 b/c 中暂时可以,我在 head 中将兼容模式设置为 IE7。)
I can't figure out how to get the height of my middle-container div to expand to fit the data inside. I'm getting lost in suggestions like height:100%, etc. Anyone figure out what css I need to add to fix the following:
http://www.tippycanoetoo.com/pillows-rugs-throws.html
http://www.tippycanoetoo.com/emma-20-5-square-throw-pillow-1.html
(It appears fine in Firefox & IE7, but not Chrome, Safari, & IE8 - it temporarily is fine in IE8 b/c I set the compatibility mode to IE7 in the head.)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将
overflow:hidden;
添加到.middle-container
或.middle
请参阅 清除浮动以获得解释
Add
overflow:hidden;
to.middle-container
or.middle
See clearing floats for an explanation