@Kelvin-AriediSubmitted 3 months ago
What are you most proud of, and what would you do differently next time?
The design was simple and fun to do
What challenges did you encounter, and how did you overcome them?no challanges
The design was simple and fun to do
What challenges did you encounter, and how did you overcome them?no challanges
Great Work!
You can center a div horizontally and vertically by assigning this styles to their parent element:
display: flex; align-items: center; /* vertically */ justify-content: center; /* horizontally */
or
display: grid; place-items: center;