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.
We'll cover the following...
We'll cover the following...
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:
Uses
grid-template-columns: repeat(7, 1fr)
...