column-gap, row-gap # 15

column-gap

The column-gap property specifies the gap between the columns.


row-gap

Row-gap property specifies the gap between the rows.
























Code example

.container {
  grid-template-columns: 100px 50px 100px;
  grid-template-rows: 80px auto 80px; 
  column-gap: 10px;
  row-gap: 15px;
}


Example




Post a Comment

Previous Post Next Post