@chidinmabnwaezeSubmitted over 1 year ago
Goodnews Ediomo Joshua
@EdiomojoseAll comments
- @EdiomojosePosted over 1 year ago
First some little corrections have to be made on the card positioning and I’ll also suggest you use vanilla css for this instead of using a css library(Bootstrap).
If this was done with vanilla css the code for the body can position the card at the center of the browser
body{ display:flex; flex-direction:column; justify-content:center; align-items:center; min-height:100vh; }
0