auto space between horizontal divs in CSS

后端 未结 4 513
北海茫月
北海茫月 2021-02-08 03:36

I\'ve searched a lot but I was not lucky to find a solution to what I am after!

Here is the issue: I\'ve created a master div (width 100%) and within it there are severa

4条回答
  •  醉话见心
    2021-02-08 04:11

    You cloud use a simple grid to archive this effect:

    .section_zone {
      display: grid;
      grid-auto-flow: column;
    }
    

提交回复
热议问题