How to position text over an image in css

后端 未结 7 978
囚心锁ツ
囚心锁ツ 2020-11-22 03:38

How do I center a text over an image in css?

7条回答
  •  迷失自我
    2020-11-22 04:04

    as Harry Joy points out, set the image as the div's background and then, if you only have one line of text you can set the line-height of the text to be the same as the div height and this will place your text in the center of the div.

    If you have more than one line you'll want to set the display to be table-cell and vertical-alignment to middle.

提交回复
热议问题