[CSS] How to Remove Link Image Borders in Internet Explorer (IE)
I researched how to remove link image borders in Internet Explorer, so here’s a memo.
Since there are almost no cases where you want to display borders on images, it should be fine to specify this directly on the img tag.
img {
border-style:none;
}
a img {
border-style:none;
}
That’s all.
That’s all from the Gemba.