gpt4 book ai didi

css - 为什么深蓝色背景没有出现在 FireFox 中(它出现在 IE 中)?

转载 作者:太空宇宙 更新时间:2023-11-03 20:23:59 26 4
gpt4 key购买 nike

请问为什么 FireFox 不显示深蓝色背景(在主要白色部分和外部浅蓝色部分之间)?它确实在 IE 中显示。

alt text

站点 URL 是 http://www.moorespeed.co.uk/

相关代码在:http://www.moorespeed.co.uk/Content/site.css

#page 
{
background-color:#082d47;
margin-left: auto;
margin-right: auto;
padding: 0 0 0 0;
width: 970px;
}

最佳答案

您的 #main div 是 float 的,容器不会自动扩展以包含 float 的子项。但是,如果您将 overflow:auto 应用于 #page,它应该会像您期望的那样展开:

#page 
{
background-color:#082d47;
margin-left: auto;
margin-right: auto;
padding: 0 0 0 0;
width: 970px;
overflow:auto;
}

关于css - 为什么深蓝色背景没有出现在 FireFox 中(它出现在 IE 中)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3515265/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com