How to Implement position: fixed effect and positionfixed in IE6

Source: Internet
Author: User

How to Implement position: fixed effect and positionfixed in IE6

How to Implement position: fixed in IE6:
Suggestion: writing code as much as possible can effectively improve learning efficiency and depth.
Because IE6 does not support position: fixed, many good effects cannot be achieved, but IE6 does not, the following example describes how to achieve this effect. The code example is as follows:

<! DOCTYPE html> 

The above code is compatible with IE6 and other mainstream browsers. The core code to achieve this effect is:

_top:expression(eval(document.documentElement.scrollTop));

Note: after this line of code is added, the top function in IE6 is invalid. Therefore, add _ margin-top.
Although the above Code implements the desired function, it is still a problem, that is, it will shake when dragging the scroll bar. The code is modified as follows:

<! DOCTYPE html> 

The above code perfectly implements the functions we want. Add the following code on the basis of the first instance:

*html{  background-image:url(about:blank);  background-attachment:fixed;}

The original address is: http://www.softwhy.com/forum.php? Mod = viewthread & tid = 3377.

For more information, see: http://www.softwhy.com/divcss/

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.