如何删除背景灰色使其在HTML中50x50

时间:2015-03-16 06:33:49

标签: html css

您好在下面的代码中如何删除背景灰色,我的图像背景显示为50x50。 预期产出:

带有黑色边框图像的圆圈应为center.if图像尺寸128x128px表示我想自动更改为50x50。

HTML

<div class="specilites">
    <img src="img/Ambulance-128 (3).png"/>
&nbsp;
</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;
}

1 个答案:

答案 0 :(得分:0)

您可以使用css中background-color标记的<img>属性更改img标记的背景,并删除背景图片。这里是示例jsfiddle