The grid-area property is used to set a grid item size and location in a grid layout. The grid-area property is also used to set a name to a grid item.
Syntax:
grid-area: grid-row-start|grid-column-start|grid-row-end| grid-column-end|itemname;
Property Values:
- grid-row-start: It sets the row on which the item is displayed first.
- grid-column-start: It sets the column on which the item is displayed first.
- grid-row-end: It specifies the row-line to stop displaying the item, or span how many rows.
- grid-column-end: It sets the number of columns to span.
- itemname: It sets a name for the grid item.
Example 1:
<!DOCTYPE html> <html> <head> <title> CSS | grid-area Property </title> <style> .item { grid-area: Area; } .grid-container { display: grid; grid-template-areas: 'Area Area Area'; grid-gap: 30px; background-color: green; padding: 20px; } .GFG { background-color: white; text-align: center; padding: 20px 0; font-size: 30px; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>The grid-area Property</h2> <div class = "grid-container"> <div class = "GFG item">1</div> <div class = "GFG">2</div> <div class = "GFG">3</div> <div class = "GFG">4</div> <div class = "GFG">5</div> <div class = "GFG">6</div> </div> </body> </html> |
chevron_right
filter_none
Output:

Example 2:
<!DOCTYPE html> <html> <head> <title> CSS grid-area property </title> <style> .GFG1 { grid-area: heading; } .GFG2 { grid-area: margin; } .GFG3 { grid-area: subtitle1; } .GFG4 { grid-area: info; } .main { display: grid; grid-gap: 30px; background-color: green; padding: 20px; grid-template-areas: 'margin heading heading heading heading heading ' 'margin subtitle1 info info info info'; } .GFG { background-color: white; text-align: center; padding: 20px 0; font-size: 30px; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>CSS grid-area Property</h2> <div class = "main"> <div class = "GFG GFG1">Heading</div> <div class = "GFG GFG2">Margin</div> <div class = "GFG GFG3">Subtitle</div> <div class = "GFG GFG4">info</div> </div> </body> </html> |
chevron_right
filter_none
Output:

Supported Browsers: The browsers supported by grid-area property are listed below:
- Google Chrome 57.0
- Internet Explorer 16.0
- Mozilla Firefox 52.0
- Safari 10.0
- Opera 44.0
Recommended Posts:
- CSS | transition-property Property
- How to override the CSS properties of a class using another CSS class ?
- Difference between bootstrap.css and bootstrap-theme.css
- CSS | table-layout Property
- CSS | text-align Property
- CSS | border-top-width Property
- CSS | isolation Property
- CSS | border-inline-start-style Property
- CSS | column-rule-width Property
- CSS | word-spacing Property
- CSS | animation-delay Property
- CSS | margin-top Property
- CSS | border radius property
- CSS | grid Property
- CSS | font-size-adjust Property
- CSS | visibility Property
- CSS | Display property
- CSS | grid-template-columns Property
- CSS | height Property
- CSS | transform-origin Property
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.

