css - Vertically align more than one line of text? -


i'm using:

#leftfoot {padding-left: 20px; vertical-align: middle;} 

it not work. i've @ plenty of explanations, none of them seem work me. else know how vertically align more 1 line of text?

shakes fist angrily @ css.

#leftfoot {     height: 110px;     display:table-cell;     vertical-align: middle;     padding-left: 20px; } 

your issue following: text indeed centered vertically, inner div had same height text , not extending bounds of outer div, have set height inner div work.


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -