HTML Code:
<div class="grid-container">
<div class="grid">Gird 1</div>
<div class="grid">Grid 2</div>
<div class="grid">Grid 3</div>
<div class="grid">Gird 4</div>
<div class="grid">Grid 5</div>
<div class="grid">Grid 6</div>
</div>
CSS Grid Style Code:
.grid-container {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 20px;
}
.grid {
background-color: lightgray;
border: 2px inset #333;
border-radius: 10px;
padding: 25px;
text-align: center;
}
CSS Grid Example Output:
Gird 1
Grid 2
Grid 3
Gird 4
Grid 5
Grid 6
-
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to CSS,
- Elegant CSS Box Shadows Ideas
- How to Vertically Center Align Text in a Div using CSS Code Example
- How to Center Align Image in Bootstrap
- Change CSS Background Opacity with Examples
- Tutorial : Simple Lightweight Pure CSS based Vertical Navigation Menu
- Simple CSS Grid Example
- CSS: Apply opacity only for div background and not text
- How to create a circular Image using pure CSS Code
- How to place two div elements next to each other
- Responsive Web Design with CSS Media Queries: A Beginner's Tutorial [Updated for 2023]
- Add scroll to div element in HTML Css
- How to make div or text in html unselectable using CSS
- reCAPTCHA Implementation Tutorial
- Set Falling Show on Website for Christmas using Pure CSS Code
- How to set CSS background-Image Property
- List of 32 CSS cursors web developers must know about
- 10 Must Know CSS Border Styles with Examples
- How to make jsfiddle bootstrap ready
- Horizontally Center Align
- Tailwind CSS Hello World Example
- align image at middle of div element
- Only Chessboard using HTML and CSS Code Example
More Posts:
- 97 Useful Notepad++ Keyboard Shortcuts - NotepadPlusPlus
- How to convert a Postman request to cURL Command - cURL
- Rename a directory using Linux/Unix command - Linux
- Mac: How to quit Jupyter Notebook from Terminal - MacOS
- AppleScript Example with TextEdit - MacOS
- How to Change Android Toast Position? - Android
- Your Android SDK is missing, out of date or corrupted SDK Problem - Android-Studio
- List of 60 useful FTP Client Commands to access server - FTP