我试图制作一个固定的页脚,这是一个重复的图像,但到目前为止我很难过。我尝试了Sticky Footer,它重复并变成了页脚,但它不适合屏幕。现在我有一个非常简单的 css 和 html 脚本。我也尝试过 CSS 中的 Background Repeat X,但它没有进入页脚。
CSS
#foot {
height: 187px;
bottom:0;
position:fixed;
width:100%;
HTML
<div id="foot"><img src="footer.png">
</div>
有人能帮我吗?