Design comparison
Solution retrospective
Any comments / feedback welcome
Community feedback
- @pikapikamartPosted about 3 years ago
Great work on this one. Layout in desktop is fine though it is much wider than the original and takes up more space. The responsiveness is fine, but could be better like, since this is a grid, a great idea would be to have a 2x2 layout, for example, from desktop layout, resizing, the 2x2 layout would take form so that you don't have to make the elements squeezed out just to transition in mobile layout.
Some other suggestions would be:
- Avoid having multiple
h1
on a webpage, use only at least 1h1
per page. On this one, theh1
would be really suited if it is a screen-reader only text. Have a look at Grace's solution, inspect the layout and see the usage ofh1
as well as the css stylings on thath1
. - Every
img
of each person should only use their name as the value like `alt="Daniel Clifford", do not add words that relates to "graphic" such as "profile, picture, image, logo.." assistive tech will handle those for you. - Each testimonial topic title is not great to be using heading tags, the name of the person per testimonial is enough to be heading tag.
- On your
main
element, avoid usingheight: 100vh
since this will make the element's height limited to only the current viewport/screen's height. You could remove this or replace it withmin-height: 100vh
this takes full height and will expand if it needs to.
Other than those, great job.
Marked as helpful0 - Avoid having multiple
- @dewslysePosted about 3 years ago
Nice work on the testimonial grid Musa. The grid should be centred to the page and the
max-width
on.testimonials
should be set to something lower. For this challenge, max-width is about1110px
. Setting the max-width to 1110px will cause the grid to be a little 'taller'. You should then set thefont-size
(e.g.:1.3rem
) on yourh1
and alter the margins and or paddings on the.testimonial
to get it to the right height.Also, remember to wrap
.attribution
in a<footer>
All the best!
Marked as helpful0@its-me-musaPosted about 3 years ago@dewslyse thank you ... I will look into the comments you mentioned. Much appreciated. Kind regards
0
Please log in to post a comment
Log in with GitHubJoin 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