Design comparison
Solution retrospective
My app is working but I'm not currently happy with the code structure. I would appreciate some help in improving it. Thanks
Community feedback
- @fa7ehPosted over 1 year ago
Congratulations on completing this challenge 🎉
Couple of tips
You can center the whole app in the body with display flex or display grid.
body { display: flex; justify-content: center; align-items: center; }
or
body { display: grid; place-items: center; }
Play with different values justify-content and align-items to better understand the flexbox.
You can put placeholder text in input values to give hint to user of the expected input.
<input type="text" id="day" name="day" placeholder="DD">
You can also style the placeholder text in css.
I hope this helps
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