Design comparison
SolutionDesign
Solution retrospective
I couldn't figure it out why my nav bar does not justified to the flex-end. If someone find my mistake, please let me now.
Community feedback
- @sivakumarsPosted almost 2 years ago
Hi, Eduardo.
There is no property called
justify-self
on a flex-item. Please consider usingmargin-auto: left
on the.menu__container__show
class. This pushes the menu container to the far right..menu__container__show{ /* justify-self: flex-end; */ margin-left: auto; }
There is only
align-self
on flex-items. I hope this solves your problem.Marked as helpful0
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