在我的一个项目中,我在 Google Chrome (v.18.0.1025.168 m) 中遇到了一个奇怪的行为。
在 Firefox、IE、Opera 中一切正常,但在 Chrome 中,通过单击指向哈希锚的链接会出现不正确的水平滚动。垂直滚动工作正常,但水平滚动非常糟糕。
有时请求的 div 显示得很好,但在大多数情况下,div 块位于视觉范围的左侧或右侧。
您可以使用以下代码重现这一点。通过单击左上固定菜单:例如 top、left、right、moreright、right。
我不确定这是 Chrome 错误还是我忽略了什么?!你什么意思?有已知的解决方法吗?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Google-Chrome don't follows anchors properly - incorrect horizontal scrolling</title>
<style type="text/css">
body
{
min-width: 700px;
overflow: auto;
}
div
{
position: absolute;
width: 400px;
height: 300px;
z-index: 1;
padding-left:160px;
}
#top
{
border: 1px solid black;
top:0px;
left: 400px;
background: gray;
}
#left
{
border: 1px solid blue;
left:0px;
top: 400px;
background:#00d;
}
#right
{
border: 1px solid orange;
left:800px;
top: 800px;
background: yellow;
}
#moreright
{
border: 1px solid red;
left:1600px;
top: 1500px;
background:#d00;
}
div#fixedmenu
{
position: fixed;
top:0;
left: 0;
width: 150px;
height: 150px;
background: #ddd;
border: 1px solid gray;
z-index: 2;
margin: 0;
padding:0;
}
</style>
</head>
<body>
<div id="top" >top</div>
<div id="left">left</div>
<div id="right">right</div>
<div id="moreright">moreright</div>
<div id="fixedmenu">
<ul>
<li><a href="#top">top</a></li>
<li><a href="#left">left</a></li>
<li><a href="#right">right</a></li>
<li><a href="#moreright">moreright</a></li>
</ul>
</div>
</body>
</html>