我在angular4应用程序中使用ngb-accordions。应始终打开一架手风琴。我唯一的问题是我无法删除悬停时的下划线。 这是我的html代码:
TextView
这是我的css代码:
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<ProgressBar
android:id="@+id/download_progress
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<TextView
android:id="@+id/download_file_name
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_grvity="center"
>
</RelativeLayout>
颜色有效,它保持不变。光标也可以,但标题仍然带有下划线...
答案 0 :(得分:0)
只需将以下代码添加到CSS
即可a.accordion-toggle{
text-decoration: none !important;
}