グリッドで自動的に列数を調整する関数です。レスポンシブグリッドの実装に必須です。
grid-template-columns: repeat(auto-fit | auto-fill, <track-size>)
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
最小250pxでコンテナ幅に応じて列数を自動調整
grid-template-columns: repeat(auto-fill, 200px);
200px固定幅で可能な限り多くの列を作成
auto-fitは余った空間を埋める、auto-fillは空の列も作成する。
Chrome 57+, Firefox 52+, Safari 10.1+