Grid
Powered by Wellora
grid-template
grid-template: <rows> / <columns>
CSS
Copy
.container
{
display
:
grid
;
grid-template
:
repeat
(
3
,
1
fr
) /
repeat
(
4
,
1
fr
);
}
Box-1
Box-2
Box-3
Box-4
Box-5
Box-6
Box-7
Box-8
Box-9