6

这是我所拥有的:

<div id="page_container">
    A short text
</div>

#page_container
{
    position: absolute;
    top: 120px;
    left: 280px;
    right: 30px;
    background-color: #D0D0CD;
    border-radius: 5px;
    box-shadow: 1px 1px 12px #555;
    height: 1060px;
    overflow: auto;
    background-image: url(./library/grappe.png);
    background-repeat: no-repeat;
    background-position: bottom right;
}

所以,我的 div 是 1060px,在我的屏幕右侧,并且在右下角有一个图像。到目前为止一切顺利。好看的短文。

由于溢出:自动,长文本不会让我的 div 更高,但添加一个滚动条,这就是我想要的。

但是,背景图像仍然粘在 div 右下角,而不是当我向下滚动具有滚动条的 div 时基本上不显示和第一次显示。基本上图像保持在相同的位置,如position: fixed. 无法改变这种行为。

4

2 回答 2

5

您需要添加一个内部 div,该内部 div 将具有背景,而第一个将处理滚动。

<div id="page_container">
    <div class="block_container">
        A short text
    </div>
</div>

CSS 部分

#page_container
{
    position: absolute;
    top: 120px;
    left: 280px;
    right: 30px;
    border-radius: 5px;
    box-shadow: 1px 1px 12px #555;
    height: 1060px;
    overflow: auto;
}

#page_container .block_container
{
    background: #D0D0CD url('./library/grappe.png') bottom right no-repeat;
}
于 2013-07-29T19:13:37.063 回答
0

我设法让它工作,而不必在那里有另一个 div。

#page_container {
  background: url('IMAGE_URL') no-repeat bottom right, linear-gradient(315deg, #0F3052 0%, #11A0B0 100%);
  background-size: contain;
}
于 2021-12-14T13:08:27.363 回答