如何使用CSS制作前景图像?

时间:2014-12-21 20:26:20

标签: html css foreground

已经有了这张图片,我想将它作为前景放在我的网站上。它应该与背景和元素重叠。我正在使用CSS。

https://www.dropbox.com/s/aawxonln4h1i5dt/Snow.png?dl=0

1 个答案:

答案 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;
}