删除图像边框

时间:2013-07-05 07:49:31

标签: html css

我想删除图片边框,我尝试了以下方法

img {
    border: 0px;
}

此外,我在浏览器border: none !important

的控制台中尝试了以下操作

我的HTML代码是

<div id="startDiv" style="font-size: 40;margin-left: 166px;margin-top: 207px" >
  <img onclick="startApplet();" id="start" />
</div>

我在head

中写了以下样式标记
#start {
    width: 150px;
    height: 150px;
    background: url(images/start.png) 0 150px;
    border-style: none;
}

1 个答案:

答案 0 :(得分:0)

尝试:

#start img{
    border:none!important;
    border-style:none;
}