Hello, I am trying to use a logo with redirection to the index, it works, I have the logo centered with 0 auto, but the left and right margins are also taken as part of the link, my question, how to make the link only affect the area from image?
attached code:
.nombre-sitio img{
margin: 0 auto;
text-align: center;
}
<header>
<h1 class="nombre-sitio"><a href="index.html"><img src="img/logo.png" alt="logo"></a></h1>
</header>