我正在处理角度材料的工具提示。我想在图标上悬停时显示工具提示。当我试图在<i>
标签上实现角度材料工具提示时,它似乎不起作用。
module.ts
import {MatTooltipModule} from '@angular/material/tooltip';
@NgModule({
imports: [
MatTooltipModule
]
component.html
<h4>Info <i class="fas fa-info-circle fa-xs" matTooltip="Info about the action"></i></h4>
任何人都可以帮助我吗?
答案 0 :(得分:0)
Font awesome css可能存在一些问题,或者材料确实支持有限标签,但请尝试以下代码。
`<h4 matTooltip="Info about the action">Info <i class="fas fa-info-circle fa-xs"></i><`/h4>