如何在图像中放置图像或图标

时间:2017-10-01 14:34:33

标签: html css twitter-bootstrap

如何在大图像中放置小图像或图标?那也很敏感。 我计划在我们的系统内制作一个平面图(大图),当我悬停计算机(小图像/图标)时会悬停一些东西。任何建议都会感谢你:))

1 个答案:

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