Testimonials grid section Html CSS Responsive Design
Design comparison
Solution retrospective
Hi Developer, take a look around my solution, I would be grateful to any feedback, Advice, Suggestion.
Community feedback
- @pikapikamartPosted about 3 years ago
Hey, great work on this one. Desktop layout is really great, it is very responsive and those custom grid layout is great. The mobile layout looks really great as well.
You already got great tip on this, just going to add some suggestions as well:
- It would be great to have a base styling with these:
html { box-sizing: border-box; font-size: 100%; } *, *::before, *::after { box-sizing: inherit; }
This way, handling element's sizes are much easier since
padding
andmargin
won't add any sizes to the defined element's size.- Avoid using multiple
h1
on a page, use only at least 1 per page so change those into other heading tags. - The person's position should not be inside their own heading tag, you could wrapped both name and position in a heading tag if you like.
- A page must have a single
h1
on a page. Since there are no text-content that are visible that could beh1
, you will make theh1
screen-reader only text. Meaning this will be hidden for sighted users and only be visible for screen-reader users, search aboutsr-only
stylings and see how it is used. Theh1
text should describe what is the main content is all about, thish1
would be placed as the first text-content inside themain
element.Have a look at Grace's solution on this one inspect on how she used theh1
as well the stylings applied to it, copy the stylings since you will use that a lot.
Besides those, site looks really great.
Marked as helpful1@AhmedSaidi99Posted about 3 years ago@pikamart Really really helpful feedback thanks a lot Mart.
1 - @Carlos-A-PPosted about 3 years ago
This looks great! I like how it's very responsive. All that's left is to add a background-color to your body tag.
Marked as helpful0@AhmedSaidi99Posted about 3 years ago@Carlos-A-P Oops I forgot it, I added the background-color.
- Thank you Carlos
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