File tree Expand file tree Collapse file tree 1 file changed +27
-5
lines changed Expand file tree Collapse file tree 1 file changed +27
-5
lines changed Original file line number Diff line number Diff line change 41
41
42
42
/* CSS GRID */
43
43
display : grid;
44
- grid-template-columns : 200px 200px 100px 100px ;
45
- grid-template-rows : 300px 200px ;
44
+ /* grid-template-columns: 200px 200px 1fr 1fr; */
45
+ /* grid-template-columns: 1fr 1fr 1fr 1fr; */
46
+ /* grid-template-rows: 300px 200px; */
47
+ grid-template-columns : repeat (4 , 1fr );
48
+ grid-template-rows : 1fr 1fr ;
49
+ /* height: 500px; */
46
50
47
51
/* gap: 30px; */
48
- column-gap : 30px ;
49
- row-gap : 60px ;
52
+ column-gap : 20px ;
53
+ row-gap : 40px ;
54
+ }
55
+
56
+ .el--8 {
57
+ grid-column : 2 / 3 ;
58
+ /* grid-row: 1 / span 2; */
59
+ grid-row : 1 / 2 ;
60
+ }
61
+
62
+ .el--2 {
63
+ /* grid-column: 1 / 4; */
64
+ /* grid-column: 1 / span 4; */
65
+ /* grid-column: 2 / -1; */
66
+ grid-column : 1 / -1 ;
67
+ grid-row : 2 ;
68
+ }
69
+
70
+ .el--6 {
71
+ /* grid-row: 3 / 4; */
50
72
}
51
73
52
74
.container--2 {
73
95
< div class ="el el--4 "> (4) are</ div >
74
96
< div class ="el el--5 "> (5) amazing</ div >
75
97
< div class ="el el--6 "> (6) languages</ div >
76
- < div class ="el el--7 "> (7) to</ div >
98
+ <!-- < div class="el el--7">(7) to</div> -- >
77
99
< div class ="el el--8 "> (8) learn</ div >
78
100
</ div >
79
101
You can’t perform that action at this time.
0 commit comments