| OLD | NEW |
| 1 .grid { | 1 .grid { |
| 2 display: grid; | 2 display: grid; |
| 3 background-color: grey; | 3 background-color: grey; |
| 4 } | 4 } |
| 5 | 5 |
| 6 .indefiniteSizeGrid { |
| 7 display: grid; |
| 8 background-color: grey; |
| 9 width: -webkit-min-content; |
| 10 height: auto; |
| 11 } |
| 12 |
| 6 .inline-grid { | 13 .inline-grid { |
| 7 display: inline-grid; | 14 display: inline-grid; |
| 8 background-color: grey; | 15 background-color: grey; |
| 9 } | 16 } |
| 10 | 17 |
| 11 .firstRowFirstColumn { | 18 .firstRowFirstColumn { |
| 12 background-color: blue; | 19 background-color: blue; |
| 13 grid-column: 1; | 20 grid-column: 1; |
| 14 grid-row: 1; | 21 grid-row: 1; |
| 15 } | 22 } |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 -webkit-writing-mode: vertical-lr; | 161 -webkit-writing-mode: vertical-lr; |
| 155 } | 162 } |
| 156 | 163 |
| 157 .horizontalBT { | 164 .horizontalBT { |
| 158 -webkit-writing-mode: horizontal-bt; | 165 -webkit-writing-mode: horizontal-bt; |
| 159 } | 166 } |
| 160 | 167 |
| 161 .directionRTL { | 168 .directionRTL { |
| 162 direction: rtl; | 169 direction: rtl; |
| 163 } | 170 } |
| OLD | NEW |