My div has a background-cover attached to it, but I'm having issues with Chrome as it sometimes adds a blank line (either horizontal or vertical, depending on the image).
Here is my HTML code:
<div class="div_image"></div>
And here is my CSS code:
.div_image {
width: 100px;
height: 100px;
border: solid red;
background: url('http://2.bp.blogspot.com/-v7UK1A8fw3A/UJXR5Vc5RjI/AAAAAAAAHuY/aWzZuSv8-jI/s250/Laika.jpg') no-repeat center center;
background-size:cover;
}
If you'd like to see an example of this issue, check out this link.