<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,在我的屏幕右侧,并在右下角有一个图像。到目前为止如此正确。很好看的短文。
由于溢出:auto,长文本不会使我的div更高,但是添加一个滚动条,这就是我想要的......但是......
当我向下滚动具有滚动条的div时,背景图像保持粘贴到div右下角,而不是基本上不显示和首次显示。基本上图像保持在相同位置,如位置:固定。无法改变这种行为......任何人都可以提供帮助吗?
答案 0 :(得分:3)
你需要添加一个内部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;
}