CSS grid-area Property

You are Here:

CSS grid-area Property

CSS grid-area property is a shorthand property of the following CSS properties

Example

HTML Online Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> #outerdiv{ display: grid; grid: 90px/ auto auto auto; border: 1px solid black; } #outerDiv div{ border: 1px solid #00f; background-color: rgba(0,0,255,.2); padding: 25px; margin: 8px; text-align: center; } #outerDiv div:nth-child(1){ grid-area: 1/ 1/ span 2/ span 2; } </style> </head> <body> <h1>CSS grid-area Property</h1> <div id="outerDiv"> <div>Div 1</div> <div>Div 2</div> <div>Div 3</div> <div>Div 4</div> <div>Div 5</div> <div>Div 6</div> <div>Div 7</div> </div> </body> </html>

Syntax

Using CSS

element{ grid-area: 2 / 2 / span 2 / span 2; }

Using Javascript

object.style.gridArea="2 / 2 / span 2 / span 2";

Animatable

Yes, grid-area property is animatable. CSS Animatable Properties Reference.

Default Value

Default value for CSS grid-area property is auto / auto / auto / auto.

Property Value

The following table provides a list of values for CSS grid-area property.

ValueExplanation
grid-row-startSpecifies on which row-line the item will start.
grid-column-startSpecifies on which column-line the item will start.
grid-row-endSpecifies on which row-line the item will end.
grid-column-endSpecifies on which column-line the item will end.

Using JavaScript

In the following example, we will demonstrate how to change the CSS grid-area property of an element using JavaScript.

Example

HTML Online Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> #outerdiv{ display: grid; grid: 90px/ auto auto auto; border: 1px solid black; } #outerDiv div{ border: 1px solid #00f; background-color: rgba(0,0,255,.2); padding: 25px; margin: 8px; text-align: center; } </style> </head> <body> <h1>CSS grid-area Property</h1> <div id="outerDiv"> <div>Div 1</div> <div>Div 2</div> <div>Div 3</div> <div>Div 4</div> <div>Div 5</div> <div>Div 6</div> <div>Div 7</div> </div> <button onclick="myFunction()">Click Me</button> <script> var x = document.querySelector("#outerDiv div:first-child"); function myFunction(){ x.style.gridArea = "2/ 1/ span 2/ span 2"; } </script> </body> </html>

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.

Share this Page

Meet the Author