好吧,我正在尝试让我的背景图像在整个屏幕的宽度上延伸,并且与它下方的白色背景相同。有人能告诉我最简单的方法吗?这是我的网站:
http://dl.dropbox.com/u/20517056/jimedit2.html http://dl.dropbox.com/u/20517056/jimedit2.css
这是CSS:
我基本上只希望蓝色背景延伸到整个页面,并且它下面的白色背景也随之延伸。谢谢!
答案 0 :(得分:0)
#lightblue {
background: url(jimedit2media/lightblue.gif); /* remove the no-repeat */
visibility: visible;
position: fixed;
left: 0px;
top: 0px;
z-index: 0; /* set z-index to 0 */
width: 100%; /* change this to 100% */
height: 100%; /* change this to 100% */
}