我刚刚完成了该站点,但是仍然存在一个愚蠢的错误...

如果您检查整个页面的水平方向位置,则会有轻微的偏移。。。

这是2页

http://jlecologia.com/index.php

http://jlecologia.com/entreprise.php

任何想法,水平的CSS是:

#wrapper {
    position:relative; /* center, not in IE5 */
    width:856px;
    top: 38px;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    display: block;
    padding: 0px;
}


我不喜欢我的页面去做cha-cha-cha!

最佳答案

当不需要垂直滚动条时,将扩展浏览器的视口。由于您的设计是水平居中的,因此当视口扩展时,居中将发生偏移。这就是“ cha-cha-cha”的原因(不要让您的舞蹈教练告诉您不同的意思)。

如果您对此有强烈的兴趣,可以强制垂直滚动条始终像这样显示:

html { min-height: 100%; margin-bottom: 1px; }
* html { height: 100%; } /* for ie 6 */

07-28 06:23