Removing the image border in Chrome/IE9

后端 未结 18 2028
长情又很酷
长情又很酷 2020-11-27 04:28

I am trying to get rid of the thin border that appears for every image in Chrome & IE9. I have this CSS:

outline: none;
border: none;

U

18条回答
  •  离开以前
    2020-11-27 05:05

    I fix it using padding style:

    #picture {
        background: url("../images/image.png") no-repeat;
        background-size: 100%;
    }
    
    .icon {
        height: 30px;
        width: 30px;
        padding: 15px;
    } 
    

    The border is disappearing, while you are increasing padding value. Find your own value.

提交回复
热议问题