Hi,
could you please review my code for Media Queries and Responsive Design skill test?
I do appreciate beforehand.
Hi @bedribulut
This is correct!
Your minmax()
code doesn’t work as you may expect, since the column count is fixed to 3
. It’s the same as grid-template-columns: repeat(3, 1fr);
.
To make the code “smarter” you could use grid-template-columns: repeat(auto-fill, minmax(250px,1fr));
(or auto-fit
instead of auto-fill
).
Happy coding,
Michael
2 Likes
I am really grateful for your valuable review and assessment.
Thank you @mikoMK
1 Like