Snippets Collections
.wrapper {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-template-rows: 100px 100px;
  grid-template-areas:
    "a a b"
    "a a b";
}
.item1 {
  grid-area: a;
}
.item2 {
  grid-area: b;
}
star

Tue Mar 01 2022 01:06:42 GMT+0000 (Coordinated Universal Time) https://developer.mozilla.org/en-US/docs/Glossary/Grid_Areas

#css #grid #areas #tempaltes

Save snippets that work with our extensions

Available in the Chrome Web Store Get Firefox Add-on Get VS Code extension