0

我对此感到很困惑。当我在我的主计算机上的 Chrome、FireFox、IE9、Opera 或 Safari 上查看我的网页时,我的菜单滚动时顶部有 3 像素的额外填充。

当我检查房子里的另外两台电脑时,在上面提到的所有浏览器(加上 IE8)上,菜单没有 3px 的额外填充。

我已经重置了我的主计算机上的浏览器,虽然我认为外部的东西一定会影响页面呈现,因为它发生在我所有的浏览器上......?这不会是监控条件吧?我对显示器校准没有做任何花哨的事情。我所有的浏览器都在缩放 100%。

主要版本:Windows 7 其他两个版本:Windows 7 和 Windows XP

任何关于为什么会这样的猜测都会非常有帮助。谢谢。

CSS:

#access {
clear: both;
display: block;
float: left;
margin: 0px 0 40px 0;
padding:0;
width: 100%;
text-align:left;
/* height:54px; */
background-image:url(images/menu-bar.gif);
background-repeat:no-repeat;
background-position:top center;
}

#access ul {
list-style: none;
margin: 0 0 0 20px;
padding: 0;
width:100%;
}

#access ul li { display:inline;padding:0;margin:0; }

#access li {
background-image:url(images/menu-bar-divider.gif); 
background-repeat:no-repeat;
background-position:top right;
}


#access ul li a {
color: #ffffff;
display:block;
float:left;
padding: 18px 39px 17px 39px;
text-decoration: none;
font-size:16px;
text-shadow: 0px 1px #c86209;
}

#access li a:link { }
#access li:last-child { background-image:none; }    
#access a:hover { text-shadow: none;background-image:url(images/menu-bar-hover.gif);background-repeat:repeat-x;background-position:bottom center;color:#000000!important;}
#access a:visited { color:#ffffff!important;} 
4

1 回答 1

0

可能的场景:

  1. 这是 CMS 吗?你可能在另一台电脑上以管理员身份登录吗?我在使用 Wordpress 时遇到了同样的问题。http://wordpress.org/support/topic/31-update-causing-28px-top-spacing-in-html-body
  2. 您是否安装了任何干扰您的布局的插件、插件、广告软件?
  3. 您是否使用了 CSS 重置或标准化?(其中之一不是两者)这可以帮助您解决

类似的问题。

  1. http://necolas.github.com/normalize.css/
  2. http://developer.yahoo.com/yui/reset/

您可以尝试在 JSFIDDLE 或http://tinkerbin.com/中复制您的案例吗?

于 2013-02-26T03:46:05.387 回答