Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I can't align the nav-bar to right even after using the "mr-auto" class

<div class="collapse navbar-collapse" id="navbarNav">
    <div class="mr-auto"></div>
    <ul class="navbar-nav">
        <li class="nav-item">
            <a class="nav-link active" aria-current="page" href="#">Home</a>
        </li>
    </ul>
</div>
question from:https://stackoverflow.com/questions/65866703/i-cant-align-my-navigation-bar-to-the-right

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.2k views
Welcome To Ask or Share your Answers For Others

1 Answer

Solved. I changed the syntax to the bootstrap 5.0 standard. mr-auto in bootstrap 4 is now ms-auto in bootstrap 5


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...