Position text over image

前端 未结 4 1421
忘了有多久
忘了有多久 2020-12-17 15:34

I have this image:

\"enter

But i want to place text in the middle like this:

4条回答
  •  伪装坚强ぢ
    2020-12-17 16:24

    You can also use absolute positioning and z-index :

    
    

    Your Test

    And in the CSS file :

    .background-image { z-index: -1; }
    .overlay-text { position: absolute; top: ??px; left: ??px; }
    

    Some nice references : http://www.w3schools.com/Css/pr_pos_z-index.asp

提交回复
热议问题