flex-wrap not working as expected in Safari

后端 未结 8 2014
有刺的猬
有刺的猬 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:20

    There are other solutions that work for me.

    In the .row container before and after are gets added with these properties:

    row:before, .row:after {
     content: " ";
     display: table;
    }
    

    so setting up the display: none or display: inline will solve the problem or setting up the content: none will also solve it.

    .row:before, .row:after {
       display: none;
    }
    or
    .row:before, .row:after {
       display: inline;
    }
    
    or
    .row:before, .row:after {
       content: none
    }
    

提交回复
热议问题