Hello!
How can I align text in the vertical middle of a Div
element provided it has a position:absolute
property specified?
Setting display:table-cell; vertical-align:middle;
isn't working.
Thanks!
Hello!
How can I align text in the vertical middle of a Div
element provided it has a position:absolute
property specified?
Setting display:table-cell; vertical-align:middle;
isn't working.
Thanks!
Wrap an inner div and give it position:relative; top:-50%;
in addition to giving the absolute a top:50%
.
Though of course if it's complicated styling, please provide your CSS.
You can get away with line-height
if it's just a single line of text, you'd have to kill the absolute
rule though.