I am trying to achieve something similar to this
This is what I have atm (bg-dark enabled just so text is visible)
As you can see theres quite a difference lol, I just need the image to go behind the taskbar, and then I need to know how to make the taskbar transparent
<body>
<nav class="navbar navbar-expand mt-3">
<div class="container-fluid bg-dark">
<div class="w-100">
<img src="img/logo.png" class="ms-4" width="60" alt="Logo">
<button class="navbar-brand ms-5 fw-bold">TEST</button>
</div>
<div class="navbar-nav justify-content-center">
<a class="nav-link text-light">One</a>
<a class="nav-link text-light">Two</a>
<a class="nav-link text-light">Three</a>
<a class="nav-link text-light">Four</a>
</div>
<div class="w-100"></div>
</div>
</nav>
<img class="bg-img" src="backgrounds/index_background_top.png">
</body>
(Bootstrap 5)
question from:
https://stackoverflow.com/questions/65880198/setting-a-background-image-behind-a-bootstrap-5-navbar 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…