简体   繁体   English

边框透明不起作用

[英]border transparent not working

Im trying to remove border from nav bar yet not successful 我正在尝试从导航栏删除边框但未成功

.container-fluid{
    background-color: white;
    border: 0px solid transparent;
}

Here is the link hosted on codepen link 这是托管在Codepen 链接上的链接

Your border is on nav 您的bordernav

 nav.navbar.navbar-inverse.navbar-default {
        border: none;
    }

That's because you are applying the style to the wrong element. 那是因为您将样式应用于错误的元素。

Please check this, it will work for you. 请检查此内容,它会为您服务。

.container-fluid .navbar-inverse {
    border: 0px;
}

a working codepen for you. 适用于您的码本。

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

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