grid rows css

Solutions on MaxInterview for grid rows css by the best coders in the world

showing results for - "grid rows css"
Darryn
01 Apr 2018
1/*creates 4 equal responsive rows in the availabe space of the css grid*/
2
3grid-template rows: repeat(4, 1fr);
4
5/*creates 3 different sized responsive rows. 3fr is 3x the size of 1fr */
6
7grid-template rows: (1fr, 2fr, 3fr);