Div with text over image

前端 未结 4 1336
鱼传尺愫
鱼传尺愫 2021-01-28 16:14

I have list with images and text. And I want to see text over image.

4条回答
  •  时光取名叫无心
    2021-01-28 16:46

    Snippet Copy this

    li{
      float:right;
      position:relative;
    }
    .textoverlay {
      position: absolute;
      z-index: 22;
      left:150px;
      top:50px;
    }
  • Text

    Lorem ipsum dolor sit amet, co

  • for change the textoverlay position change the value of top and left att in css Hope this helps THANKS!

提交回复
热议问题