Bootstrap 3: Text overlay on image

后端 未结 4 579
灰色年华
灰色年华 2020-12-08 07:02

I am using bootstrap 3 thumbnail as follows:

\"...\"
4条回答
  •  自闭症患者
    2020-12-08 07:49

    You need to set the thumbnail class to position relative then the post-content to absolute.

    Check this fiddle

    .post-content {
        top:0;
        left:0;
        position: absolute;
    }
    
    .thumbnail{
        position:relative;
    
    }
    

    Giving it top and left 0 will make it appear in the top left corner.

提交回复
热议问题