如何在大图像中放置小图像或图标?那也很敏感。 我计划在我们的系统内制作一个平面图(大图),当我悬停计算机(小图像/图标)时会悬停一些东西。任何建议都会感谢你:))
答案 0 :(得分:0)
#background {
height: 50em;
width: 50em;
background-image: url("http://lorempixel.com/400/200");
}
img{
max-width: 100%;
}
<div id="background">
<h1>Some text and another image in my big image!</h1>
<img src="http://lorempixel.com/400/200" />
</div>