错误页面> www.marijevijselaar.nl/txp/oops

仅菜单中的链接不再起作用。页脚中的链接正常。我正在使用最新的Chrome(Mac)。

CSS(仅适用于#error404)>

html, body {
    height: 100%;
}
#error404 #container {
    position: relative;
    height: 100%;
    padding: 0;
}
#error404 #header {
    position: absolute;
    top: 0;
    left: 0;
    height: auto;
    background: transparent;
}
#error404 #footer {
    position: fixed;
    bottom: 0;
    height: 180px;
    margin-bottom: 10px;
}
#error404 #left {
    float: left;
    position: absolute;
    top: 190px;
    bottom: 180px;
    background: transparent;
}
#error404 #main {
    position: absolute;
    left: 180px;
    right: 0px;
    background: transparent;
    top: 190px;
    bottom: 180px;
}
#error404 #right {
    float: right;
    position: absolute;
    top: 190px;
    bottom: 180px;
    background: transparent;
}


它与html, body {height: 100%;}有关...因为您跳过它后,该页面又是交互式的...但后来我丢失了#container(.ccs文件中的css elswhere)上的背景(不透明)。

最佳答案

GET http://www.marijevijselaar.nl/txp/jquery.fancybox/jquery.easing.1.3.js 404 (Not Found)


似乎您的链接断开了。在Chrome中使用开发人员工具会立即为您显示。

08-26 06:19