有人可以告诉我如何在不使用Z-index
或Z-order
的情况下在其他图片上添加图片吗?
答案 0 :(得分:29)
如果不确切知道自己想要实现什么,很难正确回答,z-index可能不是你真正需要的。例如,以下内容可行:
<div id="container">
<img src="img1.jpg" id="img1" />
<img src="img2.jpg" id="img2" />
</div>
#container {
position:relative;
}
#img2 {
position: absolute;
left: 50px;
top: 50px;
}
另外,您使用<img>
标签还是background-images
取决于图片的语义价值,即它们是页面的表现形式还是实际内容?
答案 1 :(得分:12)
最简单的方法是确保它们的大小相同,一个具有透明度,并使用此代码段:
<img style="background:url(image.jpg)" src="overlay_image.gif" alt="" />
答案 2 :(得分:5)
使用background-image
属性
答案 3 :(得分:0)
您还可以使用以下代码在图像上使用文字:
<TABLE BORDER="0" cellpadding="0" CELLSPACING="0">
<TR>
<TD WIDTH="221" HEIGHT="300" BACKGROUND="samplepic.jpg" VALIGN="bottom">
<FONT SIZE="+1" COLOR="yellow">Sample Text</FONT>
</TD
</TR>
</TABLE>
希望有所帮助。