Design comparison
SolutionDesign
Community feedback
- @IryDevPosted over 1 year ago
Hey @Ezekiel-Great, you did a great job on this solution😄
I have some advice in order to improve your solution :
- the button seems to be out of the input border when resizing the window
- if you want your button to be like the design you can put the property position relative to the form
- then add position absolute to the button (the element will be placed to the last absolute/relative element) and then add right 0
- remove the property left: 35%
CSS :
form{ position: relative; } button{ position: absolute; right: 0; }
I personally tested it on developer tools and this works 😊
I hope you'll find this helpful btw your solution is pretty good 😄
0@IryDevPosted over 1 year ago@Ezekiel-Great No problem, I'm glad you found this helpful😄
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