

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- 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 Questions & Answers
- 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
- Role of CSS Filters
- Container to create a grid of Bootstrap 4 cards
- Role of CSS position: sticky;
- Role of CSS Image Sprites
- Role of CSS :optional Selector
- Role of CSS :required Selector
- Role of CSS :root Selector
- Role of CSS :target Selector
- Role of CSS: valid Selector
- Role of CSS :visited Selector
- Role of CSS :focus Selector
Advertisements