how to display text over an image in Bootstrap 3.1

前端 未结 3 1689
无人及你
无人及你 2020-12-30 02:22

I would like to add text which displays over an image.

Essentially, this what my code looks like:

3条回答
  •  轮回少年
    2020-12-30 03:18

    I don't think this is possible using bootstrap classes. You can just do something like this by adding thumbnail to the image and thumbnail_legend to the next div.

    .thumbnail_legend {
        background: none repeat scroll 0 0 #FFFFFF;
        opacity: 0.5;
        top:0;
        left:0;
        position: absolute;
    }
    
    .thumbnail {
        position:relative;
    }
    

    from: Bootstrap 3: Text overlay on image

提交回复
热议问题