Is there a way to center my Logo while ensuring that the hyperlink only covers the image itself, rather than extending to 100% width?
I want my logo centered and still have the link confined to just the image area.
https://i.sstatic.net/Ko9E6.jpg
.logo {
height: 50px;
display: inline-block;
vertical-align:middle;
padding: 0px 10px;
}
@media (max-width: 600px) {
#nav ul.desktop-nav li {
display: none;
}
.logo {
display: block;
margin: auto;
}
}
<a href="#"><img class="logo" src="logo.png"></a>