兼容解决方案: POSITION:FIXED
.fixed-top {
bottom: auto;
position: fixed;
top: 0;
}
.fixed-bottom {
bottom: 0;
position: fixed;
top: auto;
}
.fixed-left {
left: 0;
position: fixed;
right: auto;
}
.fixed-right {
left: auto;
position: fixed;
right: 0;
}
转载于:https://www.cnblogs.com/wkylin/archive/2011/11/30/2269015.html