Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(125)

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css-grid-layout/resources/grid-alignment.css

Issue 2722613003: [css-grid] "normal" alignment is "start" for replaced elements (Closed)
Patch Set: Applied suggested changes Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 .justifyContentLeft { justify-content: left; } 86 .justifyContentLeft { justify-content: left; }
87 .justifyContentRight { justify-content: right; } 87 .justifyContentRight { justify-content: right; }
88 .justifyContentFlexStart { justify-content: flex-start; } 88 .justifyContentFlexStart { justify-content: flex-start; }
89 .justifyContentFlexEnd { justify-content: flex-end; } 89 .justifyContentFlexEnd { justify-content: flex-end; }
90 .justifyContentSpaceBetween { justify-content: space-between; } 90 .justifyContentSpaceBetween { justify-content: space-between; }
91 .justifyContentSpaceAround { justify-content: space-around; } 91 .justifyContentSpaceAround { justify-content: space-around; }
92 .justifyContentSpaceEvenly { justify-content: space-evenly; } 92 .justifyContentSpaceEvenly { justify-content: space-evenly; }
93 .justifyContentStretch { justify-content: stretch; } 93 .justifyContentStretch { justify-content: stretch; }
94 94
95 /* Both align-items and justify-items */ 95 /* Both align-items and justify-items */
96 .itemsNormal {
97 align-items: normal;
98 justify-items: normal;
99 }
100
101 .itemsStretch {
102 align-items: stretch;
103 justify-items: stretch;
104 }
105
96 .itemsStart { 106 .itemsStart {
97 align-items: start; 107 align-items: start;
98 justify-items: start; 108 justify-items: start;
99 } 109 }
100 110
101 .itemsCenter { 111 .itemsCenter {
102 align-items: center; 112 align-items: center;
103 justify-items: center; 113 justify-items: center;
104 } 114 }
105 115
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 222
213 .contentSpaceEvenly { 223 .contentSpaceEvenly {
214 justify-content: space-evenly; 224 justify-content: space-evenly;
215 align-content: space-evenly; 225 align-content: space-evenly;
216 } 226 }
217 227
218 .contentStretch { 228 .contentStretch {
219 justify-content: stretch; 229 justify-content: stretch;
220 align-content: stretch; 230 align-content: stretch;
221 } 231 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698