css grid generator

CSS
/* 
   Simply add class="parent" to your container div
   and you should be good to go.
   You can configure your grid either below or on their
   website, your changes should be reflected within this
   CSS block.
*/
.parent {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: repeat(5, 1fr);
	grid-column-gap: 0px;
	grid-row-gap: 0px;
}
Source

Also in CSS: