最佳答案
我有一个100% 宽度的页脚 div,它大约50px 高,这取决于它的内容。
有没有可能为 # footer 提供一个背景图像,使其溢出这个 div?
图像大约是800x600px,我希望它定位在页脚的左下角。它应该像我的网站的背景图片一样工作,但我已经在我的身体上设置了一个背景图片。我需要另一个图像定位在我的网站左下角和 # 页脚 div 将是完美的。
#footer {
clear: both;
width: 100%;
margin: 0;
padding: 30px 0 0;
background:#eee url(images/bodybgbottomleft.png) no-repeat left bottom fixed;
}
图像被设置在页脚,但是它没有溢出 div。有可能做到这一点吗?
overflow:visible
不起作用!