Design comparison
SolutionDesign
Community feedback
- @HexersePosted 3 months ago
Here's some stuff
How to hide number arrows: /* Chrome, Safari, Edge, Opera */ input::-webkit-outer-spin-button, input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
/* Firefox */ input[type=number] { -moz-appearance: textfield; } From W3
You could also make the code dryer, for example you can move the formulas into their own function. E.g
Const tipAmount = { billperPerson = bill / people; tipperPerson = (bill * tip) / people;}
Makes it much easier to debug !
Also theres a blue border around the areas when you focus them sometimes ! If you would like to remove them you can use *:focus{ outline:none}
- targets everything, *:focus targets everything that needs to focus
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