File tree Expand file tree Collapse file tree 1 file changed +30
-5
lines changed Expand file tree Collapse file tree 1 file changed +30
-5
lines changed Original file line number Diff line number Diff line change 63
63
2) first row will the leftover height "1fr",
64
64
which will filled the entire container.
65
65
*/
66
- grid-template-rows : 1fr auto;
66
+ /* grid-template-rows: 1fr auto; */
67
67
68
- gap : 20px ;
68
+ /* gap: 20px; */
69
69
column-gap : 30px ;
70
- row-gap : 60px ;
71
- height : 500px ;
70
+ row-gap : 40px ;
71
+ /* Set the proper container height */
72
+ /* height: 500px; */
73
+ }
74
+
75
+ .el--8 {
76
+ grid-column : 2 / 3 ;
77
+ /* Span to other rows */
78
+ grid-row : 1 / span 2 ;
79
+ grid-row : 1 / 3 ;
80
+ }
81
+
82
+ .el--2 {
83
+ /* Same as 1 / span 3 */
84
+ /* grid-column: 1/4; */
85
+ /* grid-column: 1 / span 3; */
86
+
87
+ /* Span 4 columns */
88
+ /* grid-column: 1 / span 4; */
89
+
90
+ /* Span until the end of the grid */
91
+ grid-column : 1 / -1 ;
92
+ grid-row : 2 ;
93
+ }
94
+
95
+ .el--6 {
96
+ /* grid-row: 3 / 6; */
72
97
}
73
98
74
99
.container--2 {
94
119
< div class ="el el--4 "> (4) are</ div >
95
120
< div class ="el el--5 "> (5) amazing</ div >
96
121
< div class ="el el--6 "> (6) languages</ div >
97
- < div class ="el el--7 "> (7) to</ div >
122
+ <!-- < div class="el el--7">(7) to</div> -- >
98
123
< div class ="el el--8 "> (8) learn</ div >
99
124
</ div >
100
125
You can’t perform that action at this time.
0 commit comments