1
我想在Twitter Bootstrap 2中覆蓋導航欄的CSS,下面是我在控制檯中看到的CSS元素。覆蓋Bootstrap導航欄CSS我自己在Bootstrap 2
// CSS found in the original bootstrap.css
.navbar-inner {
background-color: #fafafa;
background-image: linear-gradient(to bottom, #ffffff, #f2f2f2);
background-repeat: repeat-x;
border: 1px solid #d4d4d4;
border-radius: 4px;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.067);
padding-left: 20px;
padding-right: 20px;
}
我的CSS重寫我自己的custom.css內該類 //
.navbar-inner {
border: 0px !important;
border-radius: 0 !important;
background-color: #ffffff !important;
}
怎樣更改導航欄,內部類中custom.css刪除所有的box-shadow/border-radius/background image .. 我基本上只想要一個沒有任何邊界的白色背景。
'的box-shadow:無;'去除箱陰影 –