【发布时间】:2012-01-13 02:33:53
【问题描述】:
我的页面正文中的背景图片设置在右下角。但是,当页面中的内容超出屏幕时,背景图像会停在屏幕边缘,而不是实际内容结束的地方。
这是相关的css:
html, body {
margin : 0;
padding : 0;
font-family : arial, sans-serif;
background-color : #15242d;
height: 100%;height:auto;
min-width: 100%;width:auto;
font-size: 15px;
color: #959595;
}
body {
background-image : url(images/body_bkg.gif);
background-repeat: no-repeat;
background-position:right bottom;
}
解决此问题的最佳方法是什么?
【问题讨论】:
标签: css image background width