在開發(fā)的時(shí)候想要達(dá)到

這樣的效果,可是bar-header自帶的border-bottom十分討厭,想要去除,奈何border:none都不管用,最后還是從網(wǎng)上找到了解決方案
方法一:添加到自定義css
.bar-header {
border:0px!important;
border-bottom-color: transparent !important;
background-image: none !important;
border-bottom: none !important;
}
background-image: none !important ;
border-bottom: none !impotant;? 關(guān)鍵是這兩個(gè)屬性要加!important
個(gè)人感覺增加了!important
方法二:
.bar{
background-size:100%0px;
}
但是這個(gè)如果是在 Chrome瀏覽器pc界面調(diào)試的時(shí)候會有 底部邊框border-bottom,但是都是做混合app開發(fā),也不會有什么影響
原答案出處:http://stackoverflow.com/questions/27123773/remove-border-bottom-in-ion-header