Design comparison
Solution retrospective
Any feedback will do. Thanks.
Community feedback
- @pikapikamartPosted almost 3 years ago
Hey, awesome work on this one. The desktop layout looks fine, just a little bit shorter. For responsiveness, if you go at 900px upwards, you will notice that the site hides the content and creates horizontal scrollbar. For mobile state, it looks fine but the top part is being hidden by the screen's ceiling.
Here are some suggestions for the site:
- Avoid using
height: 100vh
on a large container like the.wrapper
container as this makes the element's height capped based on the viewport/screen's height. Instead usemin-height: 100vh
so that the element will expand if it needs to. - For the image, you can use a more descriptive
alt
on it if you find the image meaningful. Right now, the textoffice
is too broad on what is image's content is all about. - For the text-content of the site, the
text-align
should be set to left because right now, texts are centered. - For the .card__details
, if you look at the content, those could be "list" of information about the company website, therefore you can use
ul` tag on it. - Since I suggested
ul
, thosespan
would beli
and also, using just a planspan
to wrap a content is not that great, you should always put content inside of a meaningful element. - Lastly, just addressing the responsiveness issue if you go around at 900 px upwards^^
Aside from those, great job again on this one.
Marked as helpful1@simplyJCPosted almost 3 years agoThank you for your feedback. I also did notice that too whenever I am on mobile view the top part is being capped. I will definitely follow your suggestion. The UL elements , I didn't even realize that I could use ul tag and li to it. Nice one. I see your from ph as well. Galing! Salamat Haha
1 - Avoid using
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