我的图片需要位于特定位置,因此我在需要的位置添加了div
并在其中添加了img
标记,但是{ {1}}标记位于img
标记内,图像进入页面的右下角。当浏览器窗口很小时,不会发生这种情况。
CSS:
div
HTML:
#teamimg {
width:10%;
height:50px;
background-color:blue;
overflow: auto;
float:left;
}
答案 0 :(得分:0)
在overflow:hidden
规则上设置#teamimg
,然后您可以将图片设为background-image
background-size:cover;
。 :)