Design comparison
Solution retrospective
Any feedback is welcomed.
Community feedback
- @axevldkPosted almost 4 years ago
Hi, Carlos T ~ I have studied your work. Good so far. Here are some of my opinions.
-
You missed > here.
<article class="card card3"
, and it's making serious issues on the page. -
Maybe this is missing.
.early-access-container::after { left: 0; }
, so there is a scrollbar on desktop version. And you can also addoverflow-x: hidden
to html and body tag. -
Some images don't have alt attribute, and email input box doesn't have name attribute. Name field is mandatory for input boxes.
-
.reviewer-name-info { line-height: 8px; }
This is not good. It's making string overlapped on smaller resolutions. You can set line-height as percentage, like 120% or so. -
Also there is
-->
bug at the bottom of the page. -
.cards { grid-template-columns: repeat(auto-fit,minmax(400px,1fr)); }
makes error on width below 400px. It's not good for responsiveness. You can set it to auto on lower resolution.
Hope my opinions can help your coding even a bit. Happy coding ~ 😊
0@ctx14Posted almost 4 years agoHey Aleksandr, I really appreciate the feedback. As you can see there's still a lot for me to learn. I will look at your recommendations and will make the necessary adjustments. Again, thanks for thanking the time to review my page!
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