Responsive age calculator app built with React (no figma file)
Design comparison
Solution retrospective
Unsure about the days
calculation
I spent a lot of time working on the calculations to compute the age in years, months, days based on a birth date. Initially, I incorrectly calculated the days. At first I thought the days
represented the number of days since one's birthday.
However, after checking the design specs it looks more like it's number of days since the day of your birth.
For example, at the time of this writing it is June 11. If you were born on the the 4th of June, then it's been 7 days since your birthday so you would be XX
years, 0
months, and 7
days.
Feedback welcome
Hopefully, I've (re)interpreted this correctly and properly implemented the code for it. If not, I would greatly appreciate feedback on my error and how to improve it.
Other feedback related to styling or best practices for HTML/CSS/JS/React is also welcome.
Thank you.
Community feedback
- @NehalSahu8055Posted over 1 year ago
Hello Coder 👋.
Congratulations on successfully completing the challenge! 🎉
Few suggestions regarding design.
➨ Remove
margin
from the#root
as its not dynamically center the card use flex or grid.➨ To properly center the container.
- USING FLEXBOX
{ min-height: 100vh; display: flex; align-items: center; justify-content: center; }
- USING GRID
{ min-height: 100vh; display: grid; place-items: center; }
I hope you find this helpful.
Happy coding😄
Marked as helpful0
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