简体   繁体   English

引导程序4导航栏边框底色

[英]bootstrap 4 navbar border bottom color

A lot of searching, but without result. 大量搜索,但没有结果。 How to change the border-bottom color of the navbar in Bootstrap 4 如何在Bootstrap 4中更改导航栏的边框底部颜色

<nav class="navbar fixed-top navbar-expand-lg navbar-dark bg-dark justify-content-center">
....
</nav>

Try This 尝试这个

 <style>
        .navbar
        {
            border-bottom:5px solid #000;
        }
      </style>

In the place of #000 put your colour 代替#000涂上颜色

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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