“ justify-content-md-end”和“ justify-content-center”彼此相反

时间:2019-04-05 10:26:59

标签: html bootstrap-4

据我了解,当我使用“ justify-content-md-end”时,应在缩小窗口时将内容定位在右侧。当窗口为全尺寸时,“ justify-content-center”应将其定位在中心。 但是,在我的情况下,它们的行为恰恰相反。 检查“ ID:菜单”的子项。我为这些类使用了justify-content-md-end justify-content-center,它们的行为恰恰相反。

<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
    <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
    <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>


<nav class="navbar navbar-expand-md navbar-light bg-light">
            <div class="container">
                <a href="#" class="navbar-brand">
                    Logo
                </a>
                <button class="navbar-toggler" data-toggle="collapse" type="buton" data-target="#menu">
                    <span class="navbar-toggler-icon"></span>
                </button>
                <div class="container collapse navbar-collapse" id="menu">
                    <div class="container d-flex justify-content-md-end justify-content-center">
                        <ul class="navbar-nav">
                            <li class="nav-item"><a href="#" class="nav-link">Home</a></li>
                            <li class="nav-item"><a href="#" class="nav-link">Services</a></li>
                            <li class="nav-item"><a href="#" class="nav-link">Contact Us</a></li>
                            <li class="nav-item"><a href="#" class="nav-link">About US</a></li>
                        </ul>
                    </div>
                </div>

            </div>
        </nav>

2 个答案:

答案 0 :(得分:1)

  

” ..当我使用“ justify-content-md-end”时,应放置内容   缩小窗口时向右移。和   “合理内容中心”应将其定位在中心位置   窗口是全尺寸的...”

与此相反的是。 justify-content-center表示xs和更大,被justify-content-md-end覆盖,表示中等和更大。

较大的断点类将覆盖较小的断点类。这样,Bootstrap是“移动优先”的。它适用于same way with grid col-* classes

答案 1 :(得分:0)

那不是这样的

因此,当您使用justify-content-md-end时,内容将位于-从全屏到767像素的右侧。

当您使用justify-content-center屏幕宽度小于767px时,内容将位于中心。

因此,如果要使内容在767px以上的屏幕上正确,并在767px以下的屏幕上居中,则需要像这样使用它:

justify-content-md-end justify-content-center