Answers for "grid repeat with auto"

7

css grid repeat

repeat(/*Number of repeats*/, /*Code to be repeated*/)

.gridContainer {
	grid-template-columns: repeat(4, 100px); /*Creates 4 columns, each 100px in width*/
	grid-template-rows: repeat(2, 250px); /*Creates 2 rows, each 250px in height*/
}
Posted by: Guest on April-02-2020

Code answers related to "grid repeat with auto"

Browse Popular Code Answers by Language