@drangam9Submitted over 1 year ago
I used position:absolute to center the card in the middle of the webpage.
Is there a better/efficient way to center it? Is this method good enough? Thanks in advance.
I used position:absolute to center the card in the middle of the webpage.
Is there a better/efficient way to center it? Is this method good enough? Thanks in advance.
You have 2 options:
body { display: flex; justify-content: center; align-items: center; }
I don't know if the second option works. I've never tried it but I saw it in a video and could work. Either way is good enough for this project since it's a very simple one.