【发布时间】:2021-12-28 07:57:28
【问题描述】:
我想更改工具提示的宽度,但不知道如何为此编写 CSS 代码。 HTML 代码如下:
<th class="number">
<span class="header-content" jhiSortBy="sumPerAmount">
<span class="header-text" jhiTranslate="something.sumPerAmount" ngbTooltip="VERY_LONG_TOOLTIP_TEXT_VERY_LONG_TOOLTIP_TEXT_VERY_LONG_TOOLTIP_TEXT" tooltipClass="wide-tooltip">Sum per
amount</span>
<fa-icon class="sort-icon" [icon]="'sort'"></fa-icon>
</span>
</th>
CSS 代码:
.wide-tooltip .tooltip-inner{
background-color: darkgreen;
width: 300px;
}
【问题讨论】:
-
看起来没问题,您还需要将 CSS 中的 max-width 覆盖为 max-width: 300px;
标签: angular tooltip bootstrapper