How to make CSS justify-content:space-evenly fallback to space-between on Safari?

前端 未结 3 1024
萌比男神i
萌比男神i 2021-01-31 03:13

I\'m building a webpage and running test against different browsers, one of the designs involves a flexbox and space-evenly, I know this is not widely supported yet, so as a fal

3条回答
  •  走了就别回头了
    2021-01-31 04:16

    /*for ie*/
    justify-content: space-around;
    /*for moz & chrome*/
    -webkit-justify-content: space-evenly !important;
    

    justify-content property in ie

提交回复
热议问题