Text in vertical middle of Div

ぐ巨炮叔叔 提交于 2019-12-11 21:26:14

问题


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!


回答1:


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.



来源:https://stackoverflow.com/questions/3535689/text-in-vertical-middle-of-div

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!