Я использую Ngpopover для всплывающей подсказки в матовой таблице для моего проекта angular 6. Он работает в Google Chrome, но не работает в Firefox. Вот мой код
<ng-container matColumnDef="total_click">
<th mat-header-cell *matHeaderCellDef mat-sort-header style="text-align: center; width: 8%;" [popover]="myPopover" [popoverOnHover]="true"> Field name <a href="JavaScript:Void(0);"><i class="fa fa-question-circle"></i></a>
<popover-content #myPopover placement="top" [animation]="true" [closeOnClickOutside]="true">
<div style="width: 265px;overflow: hidden !important;">
<h6 style="overflow: hidden !important; text-align: center;font-size: 16px;padding: 10px 20px;background: #ededed;margin: 0;border-bottom: 1px solid #cfcfcf;">Calculation</h6>
</div>
</popover-content>
</th>
</ng-container>