| OLD | NEW |
| 1 CSS Grid Layout Attributes that are exposed in the CSS computed style object: | 1 CSS Grid Layout Attributes that are exposed in the CSS computed style object: |
| 2 | 2 |
| 3 grid-auto-columns: auto; | 3 grid-auto-columns: auto; |
| 4 grid-auto-flow: row; | 4 grid-auto-flow: row; |
| 5 grid-auto-rows: auto; | 5 grid-auto-rows: auto; |
| 6 grid-column-end: auto; | 6 grid-column-end: auto; |
| 7 grid-column-start: auto; | 7 grid-column-start: auto; |
| 8 grid-template-areas: none; | 8 grid-template-areas: none; |
| 9 grid-template-columns: none; | 9 grid-template-columns: none; |
| 10 grid-template-rows: none; | 10 grid-template-rows: none; |
| 11 grid-row-end: auto; | 11 grid-row-end: auto; |
| 12 grid-row-start: auto; | 12 grid-row-start: auto; |
| 13 grid-column-gap: 0px; |
| 14 grid-row-gap: 0px; |
| 13 | 15 |
| OLD | NEW |