flex-wrap not working as expected in Safari

后端 未结 8 1974
有刺的猬
有刺的猬 2020-12-24 10:21

On the homepage of http://www.shopifyexperte.de/ there are two flex-box modules, one under \"Kundenstimmen\" and one under \"Neueste Beiträge...\". The inner boxes are suppo

相关标签:
8条回答
  • 2020-12-24 11:25

    I had a similar issue in Safari (9.1.3) with the Bootstrap 3 grid system (e.g. col-md-4) in combination with flex. I solved it by setting margin: 0 -1px; on the col items and flex-wrap: wrap; on the wrapper.

    0 讨论(0)
  • 2020-12-24 11:27

    I just ran into this issue again and used 'flex-flow'. Worked like a charm.

    .row {
        @include flex();
        @include flex-wrap();
        flex-flow: row;
    }
    
    0 讨论(0)
提交回复
热议问题