Skip to content

Instantly share code, notes, and snippets.

@RomanMaksudov
Created February 5, 2024 14:50
Show Gist options
  • Save RomanMaksudov/c7385af7086c3581bb2fc2e542a85688 to your computer and use it in GitHub Desktop.
Save RomanMaksudov/c7385af7086c3581bb2fc2e542a85688 to your computer and use it in GitHub Desktop.
Grid_example_2
<div class="grid-wrapper">
<div class="grid-item item-1"></div>
<div class="grid-item item-2"></div>
<div class="grid-item item-3"></div>
<div class="grid-item item-4"></div>
<div class="grid-item item-5"></div>
</div>
.grid-wrapper {
display: grid;
grid-template-columns: 200px 200px;
grid-template-rows: 100px 100px 100px;
}
.item-1 {
background-color: rgb(161, 48, 48);
}
.item-2 {
background-color: rgb(49, 163, 68);
}
.item-3 {
background-color: rgb(34, 32, 180);
}
.item-4 {
background-color: rgb(207, 219, 29);
}
.item-5 {
background-color: rgb(175, 52, 165);
}
.grid-wrapper {
display: grid;❶
grid-template-columns: 200px 200px;❷
grid-template-rows: 100px 100px 100px;❸
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment