HomeGrid & Layout
Preview
css
sticky
Code
css
.layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 2rem;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
}

@media (max-width: 900px) {
  .layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}
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.