@AlexxLuisSubmitted 3 months ago
h-octocat
@h-octocatAll comments
- @h-octocatPosted 2 months ago
You are off to the right start, but you need a few small changes. I would start by properly centering the card. I did this by:
* { margin: 0; padding: 0; box-sizing: border-box; }
.card { margin: 0; position: absolute; top: 50%; left: 50%; transform: translateY(-50%) translateX(-50%); }. Hope this helps!
0