简体   繁体   中英

nav-pills not working in my code (Bootstrap 4)

I'm trying to add nav-pills to tag but it's not working, why? I really tried everything but nothing works!

<ul class="nav nav-pills flex-column">

  <li class="nav-item">
    <a class="nav-link" href="dashboard.php">Dashboard</a>
  </li>

  <li class="nav-item">
    <a class="nav-link" href="#">Add New Post</a>
  </li>

</ul>

Pills require the active class.

<ul class="nav nav-pills flex-column">
    <li class="nav-item">
        <a class="nav-link active" href="">Dashboard</a>
    </li>
    <li class="nav-item">
        <a class="nav-link" href="#">Add New Post</a>
    </li>
</ul>

https://www.codeply.com/go/xrln5uphko

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM