日期:2014-05-16 浏览次数:20480 次
.fixed-right {
position:fixed;
_position:absolute;
right:0;
left:auto;
_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))";
}
/* 可以把 about:blank 设置成你的CSS文件地址 */
html,html body {
_background-image:url(about:blank);
_background-attachment:fixed;
}
<div style="position: relative;width:400px;">
<div style="position: absolute;left: 0;width: 30px;height: 200px;border: solid 1px red;"></div>
<div style="position: absolute;right: 16px;width: 50px;height: 200px;border: solid 1px red;"></div>
<div style="height: 200px;width:400px; overflow: auto;">
<table>...</table>
</div>
</div>