
mortgage repayment calculator fully responsive solution
Design comparison
Solution retrospective
I'm proud of being able to do the javascript checks. I've also improved some of the semantic and layout of the elements which made it very easy to style.
What challenges did you encounter, and how did you overcome them?Finding the formula to properly do the mortgage calculations was a challenge LOL
What specific areas of your project would you like help with?Any feedback is greatly appreciated as long as I can learn from it
Community feedback
- @LupoNetnPosted 6 months ago
@damigand hey this is really nice, very good layout!! I want to ask how did you get the £, years and % elements inside the input fields?
1@damigandPosted 6 months ago@LupoNetn hey there! I did it wrapping everything within a
div
element. For example, the "€" input looks like this:<div class="container"> <span>€</span> <input type="number" id="amount" name="amount" /> </div>
Then, you style it however you see fit. In my case, with
display: flex
on the.container
element.Hope that solves your question!
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