@GuilhermeHenrii
Shaik Firdos
@shaikfirdos786All comments
- @shaikfirdos786
Hi bro,
First of all thank you, because your javascript code helped me alot.
I would like to suggest something about positioning.
Instead of using position in your code
you can use flex or grid to position the card
body { display: flex;
flex-direction: column; align-items: center; justify-content: center; height: 100vh;
}
This will position the card in center .
overall the code is nice and helped me alot to complete the challenge.