I tried setting padding, margin and border to zero but the margins still exist.
They are removed only when the browser is resized.
html
.item {
display: inline-block;
padding: 0;
margin: 0;
border: 0;
outline: 0;
float: left;
}
<a href='link.html'>
<img class='img-responsive item col-xs-6 col-sm-4 col-md-3 col-lg-2' src='some.jpg'>
</a>