【发布时间】:2010-07-14 03:35:13
【问题描述】:
我想知道即使用户滚动浏览器,是否有办法让我的背景图像一直保持在左下角。我当前的 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;
}
【问题讨论】:
标签: css position background-image