怎么去除 Bootstrap 的圆角效果?


文档里面查不到,谷歌也搜索到...能不能用某个class去除 Bootstrap 的圆角效果?
主要是导航条部分,不加.fixed-top就会有个圆角,好难看,能不能去掉啊

css bootstrap

我就是sb 11 years, 1 month ago

你用 firebug 查看会发现有下面这么一段移除圆角的代码。如果你移除了 .navbar-fixed-top 自然下面这段就失效了。你可以写个 class 属性和下面的一样进行替换

.navbar-fixed-top .navbar-inner {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
虢季子白猫 answered 11 years, 1 month ago

Your Answer