Which property allows you to control the size of tracks in a grid layout?

  • grid-row: auto;
  • grid-template-columns;
  • grid-template-rows;
  • grid-track: size;
The property that allows you to control the size of tracks (rows and columns) in a grid layout is 'grid-template-columns' for columns and 'grid-template-rows' for rows. These properties let you define the size of the grid tracks using various units like pixels, percentages, or 'fr' units.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *