这是我所拥有的:
<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
. 无法改变这种行为。