Grid in CSS
Introduction
Gris is a two-dimensional layout design that makes web pages easier with help of rows and columns
To create a grid we must use the display property: grid like below.
.grid{
display: grid;
}
you may not see the effect immediately, le...
goudhamt.hashnode.dev3 min read