Created
October 27, 2012 07:10
-
-
Save zhuzhuaicoding/3963283 to your computer and use it in GitHub Desktop.
fixed use css hack fro ie6
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| top:expression(documentElement.scrollTop + documentElement.clientHeight - this.clientHeight-85 + 'px') | |
| http://t.163.com/ | |
| position: absolute; top: expression(((document.documentElement.scrollTop || document.body.scrollTop) + (document.documentElement.clientHeight || document.body.clientHeight) - this.offsetHeight) + "px"); | |
| http://www.seabreezecomputers.com/tips/fixed-div.htm | |
| _top: expression(eval(document.compatMode && document.compatMode=='CSS1Compat') | |
| ? documentElement.scrollTop +(documentElement.clientHeight-this.clientHeight) | |
| : document.body.scrollTop +(document.body.clientHeight-this.clientHeight)); | |
| http://www.css-101.org/fixed-positioning/05.php |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment