Home > Back-end >  Solved question - bootstrap 5 how to align properly
Solved question - bootstrap 5 how to align properly

Time:12-12

solved question thanks guys!!!

CodePudding user response:

Add this to your css

.navbar-collapse{
  justify-content: end;
}

and remove the me-auto class from <ul >

and that should do the trick

Here is the fiddle https://jsfiddle.net/8zn9jkfs/

  • Related