CSS Nav 在 IE 7 中向右推送
有人可以帮我解决 IE7 中的导航问题吗?它卡住了,我无法解决这个该死的问题。 http://brccycling.com/2011/
谢谢,
Can someone help me trouble shoot this nav in IE7? It jams right and I can't figure this darn problem out. http://brccycling.com/2011/
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解决此问题的最简单方法是重新设置菜单的放置方式,采用可在 IE7/8 和其他浏览器(例如 Firefox)之间工作的技术:
#top
上,添加position:相对的。
float: left
,因为不需要它。边距
规则。margin
的作用,请添加top: 260px
和left: 290px
。我们现在(正确)使用的技术详细说明如下:
The easiest way to fix this is to redo how you're placing the menu to a technique which will work between IE7/8 and other browsers such as Firefox:
#top
, addposition: relative
.#nav
:float: left
, because it's unneeded.margin
rule.margin
was doing, addtop: 260px
, andleft: 290px
.The technique we're now using (properly) is detailed here: