メモです
イメージ
![スクリーンショット 2019-11-07 17.31.11.png]()
間隔を保ったまま、端と端を埋めつつ、3等分したい
↓↓↓↓↓↓
並べたい要素に(子要素に)
.item{margin:050px20px0;width:calc((100%-100px)/3);/*50px * 2 = 100px*/}.item:nth-child(3n){margin-right:0;}
その親要素に
.wrapper{display:flex;flex-wrap:wrap;justify-content:space-between;width:100%;}