Design comparison
Solution retrospective
Proud that I did something that can immediately be used.
What challenges did you encounter, and how did you overcome them?updating input border color in 'number-of-people' input when a different class is applied. Still working on this;
Community feedback
- @danielmrz-devPosted 6 months ago
Hello there!
Congrats on completing the challenge! โ
Your project is looking fantastic!
I'd like to suggest a way to make it even better:
- Using
margin
and/orpadding
isn't always the most effective method for centering an element.
Here's a highly efficient approach to position an element at the center of the page both vertically and horizontally:
๐ Apply this CSS to the body (avoid using
position
ormargins
in order to work correctly):body { min-height: 100vh; display: flex; justify-content: center; align-items: center; }
I hope you find this helpful!
Keep up the excellent work!
Marked as helpful0@cvtqxPosted 6 months ago@danielmrz-dev
Thank you very much for the suggestion! I've updated my media query for desktop to position my container at the center of the screen.
1 - Using
- @kodan96Posted 6 months ago
hi there! ๐
you have a
.calculator-container input
selector, which targets theinput
element and has a higher specificity, so your.warning-input
won't take effect. if you use only an element selector (input
), instead of.calculator-container input
your attribute class will be able to overwrite it. and you also appliedborder: none;
to all fields, so you need to applyborder
oroutline
to the.warning-input
selector.Hope this helps ๐
Good luck and happy coding! ๐ค
Marked as helpful0@cvtqxPosted 6 months ago@kodan96 Thank you very much! Your suggestion helped me fix the warning element display.
1
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