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
Post a Comment