7

我想在另一个具有overflow: scroll. 我希望 jsFiddle 说清楚:http: //jsfiddle.net/mCYLm/2/

问题是红色 div 与滚动条重叠。我猜是指;right: 0的右手边 div.wrapper它不会减去 的滚动条div.main。当我移动overflow: scrollintodiv.wrapper时,红色横幅的大小正确(小提琴)。但是,它不再处于固定位置(向下滚动会使横幅向上滚动)。

我怎样才能同时实现以下两件事?

我想让这个在谷歌浏览器中工作。

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;
}
4

2 回答 2

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
});
于 2012-06-11T17:05:29.180 回答
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:右上角的滚动条按钮不可访问/不可点击。

测试:

  • IE6、7、8、9(Windows)
  • FF11(视窗)
  • 谷歌浏览器 18 (ubuntu)
  • Safari 5.1 (OSX)
于 2012-06-11T15:38:40.413 回答