2017-04-11 83 views
0

我在我的angular4应用程序中使用ngb-accordions。应该总是打开一个手风琴。我唯一的问题是,我无法删除悬停下划线。 这里是我的html代码:ng-bootstrap手风琴标题没有下划线悬停效果

<template ngbPanelTitle> 
    <span class="no-hover-and-no-cursor-effect">Version</span> 
</template> 

,这是我的CSS代码:

.no-hover-and-no-cursor-effect:hover { 
    cursor: default; 
    color: #0275d8; 
    text-decoration: none; 
} 

色彩的作品,它保持不变。光标也可以,但是标题仍然强调......

回答

0

只需添加下面的代码到CSS

a.accordion-toggle{ 
    text-decoration: none !important; 
}