[Solved] Why is vertical-align:middle not working like text-align:center


The vertical-align attribute is for inline elements only. It will have no effect on block level elements, like a div or a paragraph.If you would like to vertically align an inline element to the middle just use this.

Refer this Link : http://phrogz.net/CSS/vertical-align/index.html

solved Why is vertical-align:middle not working like text-align:center