column-gap, row-gap # 15
0
column-gap
The column-gap property specifies the gap between the columns.
Row-gap property specifies the gap between the rows.
.container {grid-template-columns: 100px 50px 100px;grid-template-rows: 80px auto 80px;column-gap: 10px;row-gap: 15px;}
Post a Comment