Learn CSS | Grid - part - 2 | Day 25 | Web development Course 2023

1 year ago
10

Key Grid Properties:

display: This property sets the display type of the element to "grid" to enable grid layout.
grid-template-columns: This property defines the number and size of the columns in the grid.
grid-template-rows: This property defines the number and size of the rows in the grid.
grid-column: This property specifies which column a grid item should occupy.
grid-row: This property specifies which row a grid item should occupy.
justify-content: This property controls how grid items are distributed horizontally within the container.
align-items: This property controls how grid items are distributed vertically within the container.

Loading comments...