Created
September 3, 2022 04:01
-
-
Save AakashRao-dev/d17c19c226798f6df78345304321a6bd to your computer and use it in GitHub Desktop.
The grid-row and grid-column property v2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge" /> | |
<link rel="stylesheet" href="./style.css" /> | |
<title>The grid-row and grid-column property v2</title> | |
</head> | |
<body> | |
<div class="container"> | |
<div class="header">Header</div> | |
<div class="menu">Menu</div> | |
<div class="content">Content</div> | |
<div class="footer">Footer</div> | |
</div> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* { | |
margin: 0; | |
padding: 0; | |
box-sizing: border-box; | |
} | |
.container > div { | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
font-size: 1.5rem; | |
color: #ffeead; | |
} | |
html, | |
body { | |
background: #ffeead; | |
padding: 10px; | |
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; | |
font-size: 28px; | |
} | |
/* =============================== */ | |
/* MAIN CSS GRID CODE */ | |
.container { | |
height: 100%; | |
display: grid; | |
grid-template-columns: 200px 200px; | |
grid-gap: 13px; | |
grid-template-rows: 50px auto 50px; | |
} | |
/* The grid-row and grid-column property */ | |
.header, | |
.footer { | |
grid-column: 1/3; | |
} | |
/* =============================== */ | |
.container > div:nth-child(1n) { | |
background: #ce96ca; | |
} | |
.container > div:nth-child(3n) { | |
background: #88d8b0; | |
} | |
.container > div:nth-child(2n) { | |
background: #ff6f69; | |
} | |
.container > div:nth-child(4n) { | |
background: #ffcc5c; | |
} | |
.grid-item:is(:nth-child(3), :nth-child(5), :nth-child(8), :nth-child(12), :nth-child(17)) { | |
grid-column: span 3; | |
grid-row: span 2; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment