We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63c379a commit 7130cd3Copy full SHA for 7130cd3
myWork/04-CSS-Layouts/CSSGrid/css-grid.html
@@ -47,6 +47,8 @@
47
48
column-gap: 20px;
49
row-gap: 10px;
50
+
51
+ display: none;
52
}
53
54
.container--2 {
@@ -56,11 +58,25 @@
56
58
font-size: 40px;
57
59
margin: 100px;
60
- width: 1000px;
61
+ width: 800px;
62
height: 600px;
63
64
/* CSS GRID */
- display: none;
65
+ display: grid;
66
+ grid-template-columns: 125px 200px 125px;
67
+ grid-template-rows: 250px 100px;
68
69
+ justify-content: center;
70
+ /* justify-content: space-between; */
71
+ align-content: center;
72
73
+ justify-items: center;
74
+ align-items: center;
75
+ }
76
77
+ .el--3 {
78
+ justify-self: start;
79
+ align-self: end;
80
81
82
.el--8 {
0 commit comments