[CSS] – 修正IE6不支援position:fixed的bug

來源:互聯網
上載者:User
文章目錄
  • 你是如何讓position:fixed在IE6中工作的?
  • 如何解決“震動”的問題?

來源:http://www.qianduan.net/fix-ie6-dont-support-position-fixed-bug.html

原文:http://subtlegradient.com/articles/2009/07/29/css_position_fixed_for_ie6.html

    眾所周知IE6不支援position:fixed,這個bug與IE6的雙倍margin和不支援PNG透明等bug一樣臭名昭著。前些天我做自己的部落格模板的時候,遇到了這個問題。當時就簡單的無視了IE6——儘管有幾個使用IE6的朋友,一起BS我……但是對於大項目或商業網站,如果有用到這個屬性的時候,是不可能直接無視的。

 

你是如何讓position:fixed在IE6中工作的?

    本文所使用的技巧是用了一條Internet Explorer的CSS運算式(expression)。你不可以直接使用該運算式,因為它可能會因為緩衝而不更新。解決這一點的最簡單的方式是使用eval包裹你的語句。

如何解決“震動”的問題?

    顯然IE有一個多步的渲染進程。當你滾動或調整你的瀏覽器大小的時候,它將重設所有內容並重畫頁面,這個時候它就會重新處理css運算式。這會引起一個醜陋的“震動”bug,在此處固定位置的元素需要調整以跟上你的(頁面的)滾動,於是就會“跳動”。

    解決此問題的技巧就是使用background-attachment:fixed為body或html元素添加一個background-image。這就會強制頁面在重畫之前先處理CSS。因為是在重畫之前處理CSS,它也就會同樣在重畫之前首先處理你的CSS運算式。這將讓你實現完美的平滑的固定位置元素!

    這個方案並不是我提供的。我是在網上的某個地方讀到這些的。如果你知道是誰原創了這個方法,請告訴前端觀察。

    我發現的另外一個小技巧是,你根本無需一個真實的圖片!你可以使用一個about:blank替代一個spacer.gif圖片,而且它工作的同樣出色。

<style type="text/css">
/*讓position:fixed在IE6下可用! */
.fixed-top /* 頭部固定 */ {
position:fixed;
bottom:auto;
top:0px;
}
.fixed-bottom /* 底部固定 */ {
position:fixed;
bottom:0px;
top:auto;
}
.fixed-left /* 左側固定 */ {
position:fixed;
right:auto;
left:0px;
}
.fixed-right /* 右側固定 */ {
position:fixed;
right:0px;
left:auto;

/* 上面的是除了IE6的主流瀏覽器通用的方法 */
* html, * html body /* 修正IE6震動bug */ {
background-image:url(about:blank);
background-attachment:fixed;
}
* html .fixed-top /* IE6 頭部固定 */ {
position:absolute;
bottom:auto;
top:expression(eval(document.documentElement.scrollTop));
}
* html .fixed-right /* IE6 右側固定 */ {
position:absolute;
right:auto;
left:expression(eval(document.documentElement.scrollLeft+document.documentElement.clientWidth-this.offsetWidth)-(parseInt(this.currentStyle.marginLeft, 10)||0)-(parseInt(this.currentStyle.marginRight, 10)||0));
}
* html .fixed-bottom /* IE6 底部固定 */ {
position:absolute;
bottom:auto;
top:expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight-this.offsetHeight-(parseInt(this.currentStyle.marginTop, 10)||0)-(parseInt(this.currentStyle.marginBottom, 10)||0)));
}
* html .fixed-left /* IE6 左側固定 */ {
position:absolute;
right:auto;
left:expression(eval(document.documentElement.scrollLeft));
}
</style>

備忘:expression要盡量少用,甚至不用,至於什麼原因自己上網百度一下。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.