Last active
September 3, 2022 11:26
-
-
Save AakashRao-dev/7f76ed0a43e381aa88aa10c0521f33f5 to your computer and use it in GitHub Desktop.
Creating and structuring grid layout 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>Creating and structuring grid layout</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: 150px 150px; | |
} | |
/* =============================== */ | |
.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