Testimonial section challenge, build with HTML,CSS,Sass

Solution retrospective
I liked the fact that I had to change the grid for different screen sizes. I also added another break point between tablet and desktop screen and adjusted the layout accordingly. Next time I will try to use sass. I am still learning but I think it will make things much easier and cleaner.
What challenges did you encounter, and how did you overcome them?Trying to keep the dimensions analogy as shown in the figma file especially while changing the grid layout. Using grid-template-columns: auto; solved it.
What specific areas of your project would you like help with?Please any feedback will be much appreciated.
Please log in to post a comment
Log in with GitHubCommunity feedback
- P@kaamiik
Hi. Some notes for your code:
- In each
.testimonial
, The person name can be ah2
tag as a heding.
- Also you have two blockquote. So you can structure like this:
And for your css you can add this too:<blockquote> <p>Bold text</p> <p>Regular text</p> </blockquote>
This CSS does not allow the " select when you wanna select the text with your mouse.blockquote > p.regular::before { content: "" "; } blockquote > p.regular::after { content: " ""; }
- Profile images do not need
alt
text. You can set it toalt=""
. Avoid using words like image, picture, or photo in alt descriptions.
- For your CSS, There is lots of files and honestly It's really hard for me to find the problems. I think If you are using vanilla CSS It's better to wrap all of your code in one file or two file.
- Generally from your preview I can say you only need a
max-width
on your section tag. You do not needmin-width
. And for your grid, You only need four columns and two rows and there is no need to define the rows height in your code. It's not true. Take this very simple and do not over complicate the code for your self.
Marked as helpful - In each
- P@TonyzCataldo
Well, your design size is bigger than the request desktop design, outherwise your design is fine. keep coding.
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