I have an image and a hyperlink inside a div, but for some reason, the hyperlink is not center aligned with the image.
Here's my CSS
    #loginb {
    margin-top: 40px;
    height: 50px;
    left: -438px;
    float:right;
    position: relative;
    display:block;    
}
#loginb img {
    padding-top: 10px;
}
#loginb a {
    color: #fff;   
    line-height: 10px;
}
and here's the html
 <div id="loginb">
                   <img src="icon.png" alt="login" />
                   <a href="">                  Login</a>
              </div>
 
    