tags:

views:

112

answers:

2
+1  Q: 

HTML, CSS Edit

A: 

I'm no guru at CSS, but maybe putting these on all of the elements would help:

margin-top: auto;
margin-bottom: auto;
Paulius Maruška
+2  A: 

Do this:

#contact_4 * {   
    vertical-align: middle;
    display: inline;
}

The "display: inline;" isn't necessary if you have no other styles changing those elements display types.

P.S. There's no "name" attribute for div and span elements.

Jack Sleight
Your answer is the simpler while others solutions can apply as well.didn't know that its too easy like that, but sure for experience person ;)
Amr ElGarhy