I have tried a lot but the navbar menu toggle button comes in middle when collapsed however it moves to extreme right when i expand it. How can it stay on extreme right even when it is collapsed.
'''html
Menu Menu i use bootstrap 5CodePudding user response:
Please share your css or do a {margin-left: auto}
on the 'Menu'
CodePudding user response:
You can align the text right in many ways.
- Use max-width: 100px; and set margin-left: auto;
- text-align: right;
- float: right;
Hope, it helps.