我遇到了这个网站在 IE 中显示不正确的问题。 http://outlawstar.zymichost.com/
我认为问题在于 menu_bar 不包含在 head div 中。但是,该代码在 chrome 和 firefox 中都能正常工作。有什么建议么?谢谢!
我遇到了这个网站在 IE 中显示不正确的问题。 http://outlawstar.zymichost.com/
我认为问题在于 menu_bar 不包含在 head div 中。但是,该代码在 chrome 和 firefox 中都能正常工作。有什么建议么?谢谢!
那么问题之一是你的 logo div 和 menu_bar div 的组合超过了你的 head div 的宽度。如果我将您的 menu_bar div 设置为 740px,它就可以了。您应该做的另一件事是在 menu_bar 之后添加一个 div,如下所示<div style="clear:both"></div>
:这样你就可以清除你在 head div 中设置的浮动。
编辑:
display: inline-block
此外,在 IE 中设置为 li 似乎存在问题。为了让它在那里工作,你想把它设置为 justdisplay: inline
但不幸的是,这与 li Firefox 中的样式混淆了。为 IE 设置不同的样式表可能是明智的。