text-align:center doesn't work vertically in CSS, how can I get around this?

前端 未结 3 1365
情深已故
情深已故 2021-01-27 05:59

I\'m working with a div that\'s only holding text. It\'s using absolute positioning to center itself on top of an image div that is using relative positioning . I can center the

3条回答
  •  礼貌的吻别
    2021-01-27 06:38

    Try this...

    div {  position:absolute; top:50%; }
    

    and go through

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

提交回复
热议问题