<img class="image_cover" src = "" />
.image_cover {
width:25px;
height:25px;
border-style:none;
border: 0;
box-shadow:none;
}
I'm demonstrating it in a fiddle here: jsfiddle
In Chrome Version 33.0.1750.152, I am seeing a box (border) over the <img>
tag. I am trying to get rid off it.
I followed the input over here: Removing the image border in Chrome/IE9, and set the border
, border-style
, and box-shadow
attributes, but I still see the border around it.
How do I fix this?