...

/

Problem: Responsive Monthly Calendar Grid

Problem: Responsive Monthly Calendar Grid

Try to build a fully responsive monthly calendar using CSS Grid with weekday headers, auto-wrapping dates, and offset alignment—no media queries needed.

Problem description

Given a div.calendar container with child div elements representing days of the week (Sun–Sat) and date cells (div.date), implement a CSS Grid that:

  1. Uses grid-template-columns: repeat(7, 1fr) ...