I have a series <a>
tags which represent links on my website. Some of the links have text, and some have an image. Unfortunately, I cannot get the image links vertically centered with the <a>
.
.button {
background-color: #339a8c;
border-radius: 8px;
color: #fff;
font-weight: 400;
margin: 0 5px;
padding: 8px;
text-decoration: none;
}
.buttonImage {
background-color: #339a8c;
border-radius: 8px;
padding: 8px;
}
<div id="nav">
<a class="button" href="/misc/why">Home</a>
<a class="button" href="/about">About</a>
<a class="button" href="/projects">Projects</a>
<a class="buttonImage" href="/cubesolver"><img height="18px" src="img/cubesolver.png" /></a>
</div>