I want to put a 25x25px icon (which will also be a link) and a text and both have to be centered vertically, so I tried this html:
<p>
<a href="mailto:[email protected]" target="_blank">
<img src="icons/25mail.png" />
</a> [email protected]
</p>
and this css:
p {
font-family: "Trebuchet MS";
margin: 8px 0 5px 30px;
font-size: 18px;
line-height: 25px;
}
But the icon is a bit higher in relation to the text, how do I centralize both in relation to the height of the line?