我不知道爲什麼這個頁面:http://wohf.squarespace.com/newsletter/在Safari瀏覽器的底部被切斷,似乎在所有其他瀏覽器中工作正常(據我發現迄今爲止)!底部的頁面在Safari中被切斷了
我正在使用一些jQuery和CSS的側邊欄和內容來匹配高度和帆布運行從上到下與頁腳總是在頁面的最底部。一切工作(據我所知,至今)在網站的其他部分,問題只在這個新聞簡報頁面,並只在Safari瀏覽器。
任何人都可以看到問題嗎?
這裏是我使用jQuery:
//***************************************
// Position Elements on Newsletter Page
//***************************************
// Clear previously specified heights
$("#modulePage6177253, #modulePage6177253 #canvasWrapper, #modulePage6177253 #canvas").height('auto');
$("#moduleContentWrapper6177535").insertBefore("#modulePage6177253 #pageBodyWrapper");
$("#moduleContentWrapper6177544").appendTo("#modulePage6177253 #pageFooterWrapper");
$("#modulePage6177253 #pageFooterWrapper").insertAfter("#modulePage6177253 #canvasWrapper");
equalHeight($("#modulePage6177253 #sidebar1, #modulePage6177253 #content"));
equalHeight($("#modulePage6177253, #modulePage6177253 #canvasWrapper, #modulePage6177253 #canvas"));
$("#modulePage6177253 #canvasWrapper").css("margin-bottom", "-100px");
function equalHeight(group) {
tallest = 0;
group.each(function() {
thisHeight = $(this).height();
if(thisHeight > tallest) {
tallest = thisHeight;
}
});
group.height(tallest);
}
它不是爲我而切斷。 – Pointy 2010-03-18 03:45:37
oooh!大!謝謝! 只是爲了跟進,左側欄底部文本中的最後一個單詞應該是「家庭」,底部應該有一個藍色背景頁腳,其中包含基本頁腳文本。 在Mac上使用Safari 4.0.3時對我來說是截斷的。但我還沒有找到其他地方的問題。 – VUELA 2010-03-18 03:52:22