Answers for "css grid how to make small row"

CSS
4

css grid full width row

.child-item {
  grid-column: 1 / -1;
}
Posted by: Guest on October-01-2020
1

grid rows css

/*creates 4 equal responsive rows in the availabe space of the css grid*/

grid-template rows: repeat(4, 1fr);

/*creates 3 different sized responsive rows. 3fr is 3x the size of 1fr */

grid-template rows: (1fr, 2fr, 3fr);
Posted by: Guest on September-05-2021

Browse Popular Code Answers by Language