Which CSS property creates a responsive grid without media queries?
- A grid-template-columns: repeat(auto-fit, minmax(240px, 1fr))
- B display: block
- C float: left
- D position: absolute
Answer
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr))
auto-fit with minmax lets the browser decide how many columns fit, wrapping automatically as the container width changes.





