我在 Internet Explorer 中的 div 有问题。我有一个三列布局,它可以在除 Internet Explorer 之外的所有浏览器(chrome、firefox、safari)中正确显示。在 IE 中,中间 div 显示在页面底部而不是侧边栏之间。
几天来我一直在尝试找出问题所在。我确定这与我的 CSS 有关,但我不确定。
任何帮助,将不胜感激!
我的网站是:http ://www.onedirectionconnection.com
这是CSS:
div#container {
margin-left: auto;
margin-right: auto;
margin-top: 0px;
width: 1125px;
text-align: left;
}
div#header {
clear: both;
height: 500px;
margin-top: 0px;
padding: 0px;
border: 0px
}
div#navi {
text-align: center;
background: #FFFFFF;
clear: both;
height: 60px
margin-left: 13px;
margin-right: 13px;
margin-bottom: 10px;
padding-left: 39px;
border-bottom: 3px solid #FF0000;
border-top: 3px solid #FF0000;
}
div#left {
float: left;
width: 320px;
}
div#right {
float: right;
width: 320px;
}
div#middle {
padding: 0px 325px 5px 325px;
margin: 0px;
}
我只包含了我认为与问题相关的部分,但如有必要,任何人都可以随时在我的网站上提供代码!