Mastering Grid Layouts: A Detailed Overview
Grid container
A grid layout starts by setting a container element as grid using display property.
display: grid;
Grid Items
The child items inside the container is called grid items.
Defining rows and columns
In a grid we can define as many as rows ...
vaishnavidevdiary.hashnode.dev1 min read