- 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
Vertically align the entire grid inside the container with CSS
You can try to run the following code to vertically align the grid using the align-content property −
Example
<!DOCTYPE html> <html> <head> <style> .container { display: grid; background-color: gray; align-content: center; 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
- Align flex items at the beginning of the container with CSS
- Align flex items at the end of the container with CSS
- Align flex items at the center of the container with CSS
- Role of CSS Grid Container
- Align the flex items in the bottom of the container in CSS
- Align the flex items in the middle of the container in CSS
- Align the flex items in the top of the container in CSS
- Define the height of each row in CSS Grid Container
- How to specify the direction of the flexible items inside a flex container with CSS?
- Bootstrap Grid Stacked to horizontal grid with fluid container
- Working with Java inside Docker Container
- Set the flex items vertically with CSS
- Align the last line of the text with CSS
- Specify the order of a flexible item relative to the rest of the flex items inside the same container with CSS

Advertisements