HomeGrid & Layout
Preview
css
Code
css
.page {
  display: grid;
  grid-template:
    "header  header  header"  auto
    "sidebar main    aside"   1fr
    "footer  footer  footer"  auto
    / 220px  1fr     200px;
  min-height: 100vh;
  gap: 0;
}

header  { grid-area: header;  }
.sidebar{ grid-area: sidebar; }
main    { grid-area: main;    }
aside   { grid-area: aside;   }
footer  { grid-area: footer;  }

@media (max-width: 768px) {
  .page { grid-template:
    "header" auto "main" 1fr "footer" auto / 1fr; }
  .sidebar, aside { display: none; }
}
Related Blocks
css
12-Column Grid
CSS Grid ile 12 kolonlu standart layout sistemi.
css
Bento Grid
Modern bento layout composed of varied card sizes.
css
Centered Narrow
Centered content column with 650px max width.