- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Role of CSS Grid Container
Grid Container in CSS has grid items. These items are placed inside rows and columns. Let us create a
CSS Grid container and set the number of columns in a Grid:
Example
<!DOCTYPE html> <html> <head> <style> .container { display: grid; background-color: blue; grid-template-columns: auto auto; padding: 20px; grid-gap: 20px; } .container > div { background-color: orange; border: 2px solid gray; padding: 35px; font-size: 30px; text-align: center; } </style> </head> <body> <h1>Game Board</h1> <div class = "container"> <div class = "ele1">1</div> <div class = "ele2">2</div> <div class = "ele3">3</div> <div class = "ele4">4</div> <div class = "ele5">5</div> <div class = "ele6">6</div> </div> </body> </html>
- Related Articles
- Align the grid inside the container using CSS
- Define the height of each row in CSS Grid Container
- Vertically align the entire grid inside the container with CSS
- Bootstrap Grid Stacked to horizontal grid with fluid container
- Container to create a grid of Bootstrap 4 cards
- Role of CSS Filters
- Usage of CSS grid property
- CSS Grid Layout
- CSS Grid Elements
- CSS Grid Columns
- CSS Grid Lines
- CSS Grid Rows
- CSS Grid Gaps
- CSS flex container properties
- Role of CSS :focus Selector

Advertisements