Bootstrap 3 square tile display

前端 未结 1 615
别那么骄傲
别那么骄傲 2020-12-14 03:42

Using Bootstrap 3, I want to have square tiled menu that looks like Bootstrap\'s thumbnail (http://getbootstrap.com/components/#thumbnails). The code there to get tiled disp

相关标签:
1条回答
  • 2020-12-14 04:33

    If you want them to always stay square, you can use a dummy placeholder with 100% margin before the thumbnail, and then absolute position the thumbnail...

    CSS:

    .dummy {
        margin-top: 100%;
    }
    .thumbnail {
        position: absolute;
        top: 15px;
        bottom: 0;
        left: 15px;
        right: 0;
    }
    

    http://bootply.com/108128

    0 讨论(0)
提交回复
热议问题