我正在尝试让元素始终位于窗口的右上角。
问题是当滚动条出现时,它会保持相同的位置并忽略滚动条的大小。
现在的样子:
我希望看起来如何:
.outer {
position: relative;
height: 100px;
overflow-x: hidden;
overflow-y: auto;
width: 100%;
}
.icon {
position: fixed;
right: 0;
top: 0;
background: red;
width: 10px; height: 10px;
}
小提琴:http://jsfiddle.net/L5YhF/
有什么黑客可以解决它吗?
谢谢。
答案 0 :(得分:2)
尝试制作正确的属性:
right: 10px;
或您需要的任何偏移。
编辑:
根据这个问题How can I get the browser's scrollbar sizes?的问题,您可以编写一个javascript函数,以跨浏览器的方式按照您想要的方式放置您的图标。这个小提琴的例子:
代码:
function getScrollBarWidth () {
var inner = document.createElement('p');
inner.style.width = "100%";
inner.style.height = "200px";
var outer = document.createElement('div');
outer.style.position = "absolute";
outer.style.top = "0px";
outer.style.left = "0px";
outer.style.visibility = "hidden";
outer.style.width = "200px";
outer.style.height = "150px";
outer.style.overflow = "hidden";
outer.appendChild (inner);
document.body.appendChild (outer);
var w1 = inner.offsetWidth;
outer.style.overflow = 'scroll';
var w2 = inner.offsetWidth;
if (w1 == w2) w2 = outer.clientWidth;
document.body.removeChild (outer);
return (w1 - w2);
};
window.onload = function() {
var scrollWidth = getScrollBarWidth ();
var ico = document.getElementById('ico');
ico.style.right = scrollWidth + "px";
};