Div with text over image

前端 未结 4 1333
鱼传尺愫
鱼传尺愫 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:50

    You can do this using translate transform:

    ul{ 
      list-style:none;
    }
    ul li{
      position: relative;
      float:right;
      width:330px;
    }
    .textoverlay {   
        position: absolute;
        z-index: 22;
        left:50%;
        top:50%;
        transform:translate(-50%,-50%);
        -webkkit-transform:translate(-50%,-50%);   
        text-align:center;
        width: 100%;
    }
    • Text

      Lorem ipsum dolor sit amet, co

提交回复
热议问题