CSS GRID STYLES

GRID STYLES

display-grid : activates grid layout
.grid { display:grid;}

grid-template-columns : define columns
.grid{ grid-template-columns: 1fr 1fr 1fr;}

grid-template rows : define rows
.grid { grid-template-rows: 100px 100px;}

grid gap : space …


This content originally appeared on DEV Community and was authored by Suma

GRID STYLES

display-grid : activates grid layout
.grid { display:grid;}

grid-template-columns : define columns
.grid{ grid-template-columns: 1fr 1fr 1fr;}

grid-template rows : define rows
.grid { grid-template-rows: 100px 100px;}

grid gap : space between grid boxes
.grid { grid-gap: 15px;}

place items : center items
.grid { place-items: center;}

justify-items : horizontal alignment inside each cell
.grid{justify-items: center;}

align-items : vertical alignment inside each cell
.grid{align-items: center;}

grid column : control width of a single item
.item { grid-column : span 2;}

grid row : control height of a single item
.item{ grid-row: span 2;}

grid template areas : name-based layout
.grid{ grid-template-areas;}

POSITIONING STYLES

position : static , relative , absolute ,fixed , sticky
div{ position: absolute; top:10px; left: 20px;}

top-bottom-left-right : move element in its positioned space
div {top: 10px; left: 20px;}

z-index : controls stacking order
div { z-index:10;}


This content originally appeared on DEV Community and was authored by Suma


Print Share Comment Cite Upload Translate Updates
APA

Suma | Sciencx (2025-11-18T12:52:24+00:00) CSS GRID STYLES. Retrieved from https://www.scien.cx/2025/11/18/css-grid-styles/

MLA
" » CSS GRID STYLES." Suma | Sciencx - Tuesday November 18, 2025, https://www.scien.cx/2025/11/18/css-grid-styles/
HARVARD
Suma | Sciencx Tuesday November 18, 2025 » CSS GRID STYLES., viewed ,<https://www.scien.cx/2025/11/18/css-grid-styles/>
VANCOUVER
Suma | Sciencx - » CSS GRID STYLES. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2025/11/18/css-grid-styles/
CHICAGO
" » CSS GRID STYLES." Suma | Sciencx - Accessed . https://www.scien.cx/2025/11/18/css-grid-styles/
IEEE
" » CSS GRID STYLES." Suma | Sciencx [Online]. Available: https://www.scien.cx/2025/11/18/css-grid-styles/. [Accessed: ]
rf:citation
» CSS GRID STYLES | Suma | Sciencx | https://www.scien.cx/2025/11/18/css-grid-styles/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.