CSS grid-template-rows Property
CSS grid-template-rows Property
CSS grid-template-rows
property specifies the height and the number of rows in the grid layout.
Note: The values are a space-separated list, where each value specifies the height of the respective row.
Example
Syntax
Using CSS
Using Javascript
Animatable
Yes, grid-template-rows property is animatable. CSS Animatable Properties Reference.
Default Value
Default value for CSS grid-template-rows property is none.
Property Value
The following table provides a list of values for CSS grid-template-rows
property.
Value | Explanation |
---|---|
none | Any rows will be implicitly generated and their size will be determined by the grid-auto-rows property. |
length | Allows you to define the size of each row in the grid in any CSS length unit. |
% | Allows you to define the size of each row the grid in percentage. |
max-content | Sets the size of each row to depend on the largest item in the row. |
min-content | Sets the size of each row to depend on the largest item in the row. |
auto | The size of the rows is determined by the size of the content of the items in the row and by the size of the container also. |
Using JavaScript
In the following example, we will demonstrate how to change the CSS grid-template-rows
property of an element using JavaScript.
Example
Reminder
Hi Developers, we almost covered 98.7% of CSS Tutorials with examples for quick and easy learning.
We are working to cover every Single Concept in CSS.
Please do google search for:
Join Our Channel
Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.
This channel is primarily useful for Full Stack Web Developer.