Grid in CSS
Grid
Gris is a two-dimensional layout design that makes web pages with the help of rows and columns.
To make any container grid we use display: grid
.grid{
display: grid;
}
After assigning the display property as a grid now we can make rows and ...
sudhanshumodi.hashnode.dev2 min read