当搜索结果显示在滑块上方时,我在这里附加了屏幕视图。但是行颜色始终显示为透明。在下面,我添加了我的CSS文件和特定的HTML代码。 CSS
.search-barr {
position: absolute;
top: 10px;
color: #fff !important;
width: 100%;
}
> HTML
Blockquote
<ion-view cache-view="false">
<ion-content class="has-header-md" scroll="false">
<!-- <ion-content class="has-header-md-banner" scroll="false"> -->
<ion-list class="search-barr">
<ion-item ng-repeat="item in arry_item | filter:search_text">
{{ item }}
</ion-item>
</ion-list>
非常感谢。