您好在下面的代码中如何删除背景灰色,我的图像背景显示为50x50。 预期产出:
带有黑色边框图像的圆圈应为center.if图像尺寸128x128px表示我想自动更改为50x50。
HTML
<div class="specilites">
<img src="img/Ambulance-128 (3).png"/>
</div>
CSS
.specilites img{
background: url(http://placehold.it/50x50);
background-repeat: no-repeat;
background-size: cover;
overflow:hidden;
-webkit-border-radius:50px;
-moz-border-radius:50px;
border-radius:50px;
width:90px;
height:90px;
border: 1px solid #008080;
}