I have an img tag with no src content:
<img class="logo" src="" alt="" />
I can't change the src content because it is automatically generated by my company framework.
This is my logo class:
.logo {
background: url('img/logo.png') no-repeat center center;
background-size: 70%;
margin-top: 25px;
border: 0;
border-style: none;
}
But on Chrome, I get this strange border on my image. How can I remove that?