Why doesn't my Bootstrap navigation bar render correctly?
P粉121081658
P粉121081658 2023-09-16 16:14:06
0
1
762

I'm trying to make a navigation bar using Bootstrap 4, but my code doesn't seem to work. My code is almost identical to the tutorial, with just a few changes to nav-brand. What did i do wrong? This is what it looks like.

<nav class="navbar sticky-top navbar-light bg-light">
<a class="navbar-brand" href="/">
    <img src="/assets/logo/logo.svg" width="30" height="30" class="d-inline-block align-top"
        alt="">
    <b class="hojasdeplata">Fourteen Trees</b>
</a>
<ul class="navbar-nav">
    <li class="nav-item active">
        <a class="nav-link" href="#">Active</a>
    </li>
    <li class="nav-item">
        <a class="nav-link" href="#">Link</a>
    </li>
    <li class="nav-item">
        <a class="nav-link" href="#">Link</a>
    </li>
    <li class="nav-item">
        <a class="nav-link disabled" href="#">Disabled</a>
    </li>
</ul>
P粉121081658
P粉121081658

reply all(1)
P粉541565322

Turns out I needed to move the nav-brand into a div with the other nav.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!