Skip to content

Commit

Permalink
Finished 8 & 9
Browse files Browse the repository at this point in the history
8.
We expect to complete a lot of projects, but we don’t know how many. Since those projects will be added as task cards to the Completed Projects column, it will be helpful to use implicit grid properties instead of the explicit properties we have been using so far. We know the first row with the heading should be explicitly 20px, just as the other heading rows are. Every additional row, if it exists, should be implicitly set.

Inside .card-column, use the grid-auto-rows property to implicitly set rows to 100px.
9.
Good job! Now, feel free to play around with the layout of this site, using the other CSS properties you’ve learned. Once you’re satisfied with your work, press the Next Button to move on.
  • Loading branch information
aramb-dev committed Sep 8, 2023
1 parent 9e0ef83 commit b15b2f4
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions task-board/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ input {
display: grid;
grid-template-rows: 20, repeat(5,100px);
align-content: space-around;
grid-auto-rows: 100px;
}

.card-column h2 {
Expand Down

0 comments on commit b15b2f4

Please sign in to comment.