| OLD | NEW |
| 1 /* align-self */ | 1 /* align-self */ |
| 2 .alignSelfAuto { align-self: auto; } | 2 .alignSelfAuto { align-self: auto; } |
| 3 .alignSelfStretch { align-self: stretch; } | 3 .alignSelfStretch { align-self: stretch; } |
| 4 .alignSelfStart { align-self: start; } | 4 .alignSelfStart { align-self: start; } |
| 5 .alignSelfEnd { align-self: end; } | 5 .alignSelfEnd { align-self: end; } |
| 6 .alignSelfCenter { align-self: center; } | 6 .alignSelfCenter { align-self: center; } |
| 7 .alignSelfRight { align-self: right; } | 7 .alignSelfRight { align-self: right; } |
| 8 .alignSelfLeft { align-self: left; } | 8 .alignSelfLeft { align-self: left; } |
| 9 | 9 |
| 10 .alignSelfFlexStart { align-self: flex-start; } | 10 .alignSelfFlexStart { align-self: flex-start; } |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 | 120 |
| 121 .itemsSelfStart { | 121 .itemsSelfStart { |
| 122 align-items: self-start; | 122 align-items: self-start; |
| 123 justify-items: self-start; | 123 justify-items: self-start; |
| 124 } | 124 } |
| 125 | 125 |
| 126 .itemsSelfEnd { | 126 .itemsSelfEnd { |
| 127 align-items: self-end; | 127 align-items: self-end; |
| 128 justify-items: self-end; | 128 justify-items: self-end; |
| 129 } | 129 } |
| 130 .itemsBaseline { |
| 131 align-items: baseline; |
| 132 justify-items: baseline; |
| 133 } |
| 130 | 134 |
| 131 /* Both align-self and justify-self */ | 135 /* Both align-self and justify-self */ |
| 132 .selfStretch { | 136 .selfStretch { |
| 133 align-self: stretch; | 137 align-self: stretch; |
| 134 justify-self: stretch; | 138 justify-self: stretch; |
| 135 } | 139 } |
| 136 .selfStart { | 140 .selfStart { |
| 137 align-self: start; | 141 align-self: start; |
| 138 justify-self: start; | 142 justify-self: start; |
| 139 } | 143 } |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 | 216 |
| 213 .contentSpaceEvenly { | 217 .contentSpaceEvenly { |
| 214 justify-content: space-evenly; | 218 justify-content: space-evenly; |
| 215 align-content: space-evenly; | 219 align-content: space-evenly; |
| 216 } | 220 } |
| 217 | 221 |
| 218 .contentStretch { | 222 .contentStretch { |
| 219 justify-content: stretch; | 223 justify-content: stretch; |
| 220 align-content: stretch; | 224 align-content: stretch; |
| 221 } | 225 } |
| OLD | NEW |