Submitted almost 3 years agoA solution to the Testimonials grid section challenge
Testimonial grid section
sass/scss, bem
@VeraEnders

Solution retrospective
Hello community,
This is my solution for the testimonials grid section. I got more familiar with CSS Grid and the mobile-first approach.
Questions:
- I want to create smooth animation for columns between mobile view and desktop view. For this, I assigned the following properties to the grid parent:
.grid-layout {
display: grid;
grid-template-columns: 1fr;
transition: grid-template-columns ease-out 0.3s;
}
Media query for the grid parent:
@media (min-width: 950px) {
.grid-layout {
grid-template-columns: repeat(4, 1fr);
}
}
But it doesn't work. How can I fix this?
- Does anyone know ways how to create screen capture gifs quickly and easily? I would appreciate any hints.
I'll be happy to hear any feedback and advice! Thank you in advance.
Code
Loading...
Please log in to post a comment
Log in with GitHubCommunity feedback
No feedback yet. Be the first to give feedback on Vera's solution.
Join our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord