How do I align this icon with the text?

Status
Not open for further replies.


Search "vertical align css" in Google and you will get many pages of results with answers :)

A quick solutiuon though is to simply create a class called "icon" like this...

Code:
.icon, .icon a {
    vertical-align: middle;
    padding: 0 4px 0 0;
    text-decoration: none;
}
Then apply this class to the image of the icon.

Code:
<img src="../images/icons/home.png" alt="Home" class="icon" /><a href="index.html">Home</a>
Depending on the text size and icon size and line-height you will need to adjust the padding, or even switch it from the top to the bottom.
 
Status
Not open for further replies.