Design comparison
Solution retrospective
Time Execution: 02:15:00 h/s/m
I thought it would be faster than the first exercise I did, but it took me twice as long.
Community feedback
- @pikapikamartPosted about 3 years ago
Hey, awesome work on this one. Layout seems great on desktop layout however there is no mobile state which shouldn't be the case.
It is fine that you time your project creation, but it is more important to make sure to deliver a responsive website than being fast.
Some other suggestions would be:
- Do not set a
height
on thebody
tag, as this limits the element's height based on the viewport/screen's remaining height. Usemin-height: 100vh
to take full height and this allows the element to expand if needed. - Instead of using
margin: 0 auto
on themain
element, since you are usingdisplay: flex
on thebody
tag, usejustify-content: center
andflex-direction: column
this way, you won't need thatmargin
and you could let now the.attribution
to be in the flow, meaning you could now remove theposition: absolute
. - The
.countersBox
could have usedul
element, since the content inside it are "list" of information about the company website. - The text inside the
.counter
should not use a heading tag, using heading tag on the10k+
does not make sense at all since it doesn't defined anything in the section. If a design has bold text, it doesn't always mean that it is a heading tag. - Also, wrap the text below each highlighted text on the bottom part with
p
tag, do not just usespan
, make sure to wrap text content inside a meaningful element. header
is not needed on themain
especially if you are using it just for background-image holder, you can just usediv
on that one.- There is an extra not used selector which is the
.overlay
Aside from those, great work. But make sure to always have the mobile breakpoint:>
0@buneeIsSloPosted about 3 years agoHey! @pikamart, I really admire your solutions... If you don't mind, could you please give me some feedback on my latest solution? Click here
0@pikapikamartPosted about 3 years ago@buneeIsSlo :>>
Sure i'll give it a review, but maybe not this time in the morning since I am going to design some things, but after lunch on my time, I will first going to view your solution^^
1@buneeIsSloPosted about 3 years ago@pikamart I'm totally fine with that. Please take your time.
0 - Do not set a
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