Design comparison
SolutionDesign
Solution retrospective
Llevo poco más de una semana aprendiendo HTML y CSS. No pude centrar el div, por mas que use grid, flex, y probé varias opciones más para intentar hacerlo. Esto fue lo mejor que pude hacer por el momento. Espero seguir aprendiendo. Y poder mejorarlo.
Community feedback
- @AdditionAddictPosted about 1 year ago
To center a child element inside a div:
div { display: flex; justify-content: center; // along primary axis (default x) align-items: center; // along secondary axis (default y) }
0
Please log in to post a comment
Log in with GitHubJoin our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord