Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

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*/
}
Source by css-tricks.com #
 
PREVIOUS NEXT
Tagged: #css #grid #repeat
ADD COMMENT
Topic
Name
6+5 =