Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.2k views
in Technique[技术] by (71.8m points)

i can't align my navigation bar to the right

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...