Skip to content

Commit 829c291

Browse files
committed
lesson 2-3: justify-content and align-content end
1 parent 1dbd791 commit 829c291

File tree

1 file changed

+5
-4
lines changed
  • 23-align-content-and-justify-content/scss

1 file changed

+5
-4
lines changed

23-align-content-and-justify-content/scss/_flex.scss

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
.gallery {
22
display: flex;
33
gap: 1rem;
4-
// flex-direction: row;
5-
// flex-wrap: wrap;
6-
7-
flex-flow: row wrap;
4+
flex-direction: row;
5+
flex-wrap: wrap;
6+
justify-content: space-evenly;
7+
height: 100vh;
8+
align-content: space-around;
89

910
.card {
1011
width: 40%;

0 commit comments

Comments
 (0)