Cards crops bootstrap 4

后端 未结 1 545
小鲜肉
小鲜肉 2020-12-22 09:50

Bootstrap cards inside card-columns block crops, how to disable it?

Here is screenshot. http://piccy.info/view3/10286069/ca22a528ba433ab5b05119bb1d4e1fea/

         


        
1条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-22 10:35

    This is a known issue introduced in alpha 4: https://github.com/twbs/bootstrap/issues/20654

    Looks like it will be fixed for alpha 5.

    The workaround is to use..

    .card-columns .card {
        display: inline-block;
        width:100%;
    }
    

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