我想在一个固定的顶部位置有一个小红色div,全长,在另一个具有overflow: scroll
的div内。我希望jsFiddle明确表示:http://jsfiddle.net/mCYLm/2/。
问题是红色div与滚动条重叠。我猜right: 0
表示div.wrapper
的右侧;它不会减去div.main
的滚动条。当我将overflow: scroll
移动到div.wrapper
时,红色横幅的大小正确(fiddle)。但是,它不再处于固定位置(向下滚动会使横幅向上滚动)。
我如何一起完成以下两件事?
我想在谷歌浏览器中使用它。
HTML:
<div class="wrapper">
<div class="red-banner"></div>
<div class="main">
<div class="item">foo</div>
<div class="item">foo</div>
<div class="item">foo</div>
<div class="item">foo</div>
</div>
</div>
CSS:
div.wrapper {
position: relative;
}
div.main {
height: 200px;
overflow-y: scroll;
}
div.item {
border: 1px solid black;
margin: 20px;
padding: 20px;
}
div.red-banner {
background-color: red;
position: absolute;
left: 0;
top: 0;
right: 0;
height: 20px;
}
答案 0 :(得分:5)
似乎这对纯CSS来说是不可能的,所以这里是一个JavaScript(jQuery)hack:
$(function() {
var $container = $("<div>").css({ height: 1, overflow: "scroll" }).appendTo("body");
var $child = $("<div>").css({ height: 2 }).appendTo($container);
window.SCROLLBAR_WIDTH = $container.width() - $child.width();
$container.remove();
});
然后:
$("div.red-banner").css({
right: SCROLLBAR_WIDTH
});
答案 1 :(得分:1)
<强> HTML 强>
<div class="scroller">
<div class="banner-wrapper">
<div class="banner"></div>
</div>
</div>
<div class="main">
<div class="item">foo</div>
<div class="item">foo</div>
<div class="item">foo</div>
<div class="item">foo</div>
</div>
<强> CSS 强>
* { margin: 0; padding: 0 }
body {
padding-top: 30px;
}
div.main {
height: 200px;
width: 100%;
overflow-y: scroll;
position: absolute;
z-index: 50;
background: -webkit-gradient(linear, center top, center bottom, from(white), to(rgba(255,255,255,0)));
}
div.item {
border: 1px solid black;
margin: 20px;
padding: 20px;
}
div.scroller {
height: 20px;
width: 100%;
position: absolute;
z-index: 100;
overflow: hidden;
}
div.banner-wrapper {
background: transparent;
position: relative;
height: 20px;
overflow-y: scroll;
left: 0;
margin-right: -20px;
}
div.banner {
height: 20px;
background: -webkit-gradient(linear, center top, center bottom, from(white), to(rgba(255,255,255,0)));;
margin-left: 20px;
margin-right: 40px;
}
开发版本:http://jsfiddle.net/mCYLm/13/
最终版本:http://jsfiddle.net/mCYLm/14/
适用于缩放和可变视口宽度 ! BUG :右上角的滚动条按钮无法访问/点击。
测试: