1

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>
CuriousDev
  • 1,255
  • 1
  • 21
  • 44

1 Answers1

0

see this, hope you will find your solution.

<div>
   <img style="width:50px;height:50px;vertical-align:middle" alt="vertical image">
   <span style="color:red;">Check it.</span>
</div>
khurram
  • 946
  • 1
  • 13
  • 34