已经有了这张图片,我想将它作为前景放在我的网站上。它应该与背景和元素重叠。我正在使用CSS。
答案 0 :(得分:2)
如果我理解正确你想要这样的东西:
Html(位于某处):
<img src="URL_TO_IMAGE" id="overlay"/>
CSS:
#overlay{
width:100%;
position:absolute; /*You may also use fixed depending on your needs.*/
left:0;
top:0; /*If you want it at the bottom you probably want bottom:0 instead*/
z-index: 999;
}