Skip to content

Commit c147f72

Browse files
alifarooqiAli Farooqi
andauthored
fix(curriculum): update CSS Grid review summary to include missing concepts (freeCodeCamp#64500)
Co-authored-by: Ali Farooqi <[email protected]>
1 parent b25ede0 commit c147f72

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

curriculum/challenges/english/blocks/review-css/671a9a0a140c2b9d6a75629f.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -537,8 +537,10 @@ Using placeholder text is not great for accessibility. Too often, users confuse
537537
- **Explicit Grid**: You can specify the number of lines or tracks using the `grid-template-columns` or `grid-template-rows` properties.
538538
- **Implicit Grid**: When items are placed outside of the grid, then rows and columns are automatically created for those outside elements.
539539
- **`minmax()` Function**: This function is used to set the minimum and maximum sizes for a track.
540+
- **Grid Auto-Placement**: The browser automatically places items using the auto-placement algorithm. The `grid-auto-flow` property controls this behavior, using values like `row`, `column`, or `dense` to influence the placement direction and whether empty gaps are backfilled.
540541
- **Line-based Placement**: All grids have lines. To specify where the item begins on a line, you can use the `grid-column-start` and `grid-row-start` properties. To specify where the item ends on the line, you can use the `grid-column-end` and `grid-row-end` properties. You can also choose to use the `grid-column` or `grid-row` shorthand properties instead.
541542
- **`grid-template-areas`**: This property is used to provide a name for the items you are going to position on the grid.
543+
- **Alignment:** Use `justify-items` and `align-items` to control how items are aligned within their grid areas. Use `justify-self` and `align-self` on individual grid items to override the alignment set on the container.
542544

543545
## CSS Animation Basics
544546

0 commit comments

Comments
 (0)