Force bootstrap responsive image to be square

前端 未结 5 1215
南笙
南笙 2020-12-12 20:13

Images are created in a loop with:

5条回答
  •  悲哀的现实
    2020-12-12 21:00

    web-tiki answer almost worked for me, for bigger images I had to add this HTML and CSS to have them centered within the square:

    .image{
        position:relative;
        overflow:hidden;
        padding-bottom:100%;
    }
    .image img{
        position:absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

提交回复
热议问题