我想知道是否有一种方法来保持我的背景图像在左下角,即使用户滚动浏览器.我当前的CSS可以使浏览器底部的图像在网站加载时,但如果我滚动浏览器,它仍将保持在同一个位置.我感谢任何帮助.
html,body { background-image:url("backgroundBottom.png"); background-position:bottom left; background-repeat:no-repeat; background-attachement:fixed; //I just add this,don't think this would work. font-family:"Georgia,self"; font-size:"30px"; margin:0px; height:100%; text-align:center; }
解决方法
您正在设置HTML&身体元素.
代码看起来不错,背景附件:固定是你需要的.
所以在简写CSS,只是写
body { background: url(backgroundBottom.png) bottom left no-repeat fixed; }