1
I want to put in a line an icon, 25x25px (which will also be a link) and a text and both have to be centered vertically, for this 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 icone is a little higher in relation to the text, as I do to center both in relation to the height of the line?
It worked perfectly! Thank you very much!
– pitalig