Reputation: 93
In Bootstrap 3 we can change navbar color by setting .navbar-light
border-color. However, it doesn't working by setting .navbar-light
border-color in Bootstrap 4.
Upvotes: 8
Views: 24544
Reputation: 9538
<nav class="navbar border border-dark">
...
</nav>
https://getbootstrap.com/docs/4.0/utilities/borders/#border-color
Upvotes: 0
Reputation: 952
Since the OP wanted just the border on the bottom.
<nav class="navbar border-bottom border-dark">
...
</nav>
if you'd like to change the colors or anything else with the borders refer to @klooven's answer.
Upvotes: 8
Reputation: 69
<style>
.navbar
{
border:5px solid #000;
}
</style>
try it
Thanks
Upvotes: 6