CSS | grid-template-areas Property
The grid-template-areas property in CSS is used to specify the area within the grid layout. The named grid area can be rendered on the screen based on the sequence of values of the grid-template-areas property.
Syntax:
grid-template-areas: none|itemnames;
Property Values:
- none: It is the default value and it does not contains grid named areas.
- itemnames: It is the sequence of grid area names in the form of row and columns.
Note:
- Each area name is separated by a space.
- Each row is contained within single quote ‘ ‘.
- There is a semicolon at the end of the declaration only.
- Period represents items with no names.
Example 1: This example display the grid-template-areas property.
<!DOCTYPE html> <html> <head> <title> CSS grid-template-areas Property </title> <style> .GFG1 { grid-area: area; } .geeks { background-color:green; padding:30px; display: grid; grid-template-areas: 'area area'; grid-gap: 20px; } .GFG { background-color: white; font-size: 30px; text-align: center; } </style> </head> <body> <div class="geeks"> <div class="GFG GFG1">A</div> <div class="GFG">B</div> <div class="GFG">C</div> <div class="GFG">D</div> <div class="GFG">E</div> <div class="GFG">F</div> <div class="GFG">G</div> <div class="GFG">H</div> </div> </body> </html> |
Output:

Example 2: This example display the grid-template-areas property.
<!DOCTYPE html> <html> <head> <title> CSS grid-template-areas Property </title> <style> .GFG1 { grid-area: area; } .geeks { background-color:green; padding:30px; display: grid; grid-template-areas: 'area area . . .' 'area area . . .'; grid-gap: 20px; } .GFG { background-color: white; font-size: 30px; text-align: center; } </style> </head> <body> <div class="geeks"> <div class="GFG GFG1">A</div> <div class="GFG">B</div> <div class="GFG">C</div> <div class="GFG">D</div> <div class="GFG">E</div> <div class="GFG">F</div> <div class="GFG">G</div> </div> </body> </html> |
Output:

Supported Browsers: The browser supported by grid-template-areas property are listed below:
- Google Chrome 57.0
- Internet Explorer 16.0
- Firefox 52.0
- Safari 10.0
- Opera 44.0
Recommended Posts:
- CSS | transition-property Property
- CSS | top Property
- CSS | right Property
- CSS | all Property
- CSS | direction Property
- CSS | z-index Property
- CSS | min-width Property
- CSS | hyphens Property
- HTML | DOM specified Property
- HTML | DOM dir Property
- CSS | bottom Property
- HTML | DOM id Property
- CSS | filter Property
- CSS | visibility Property
- CSS | grid 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.



