tooltip
tooltip copied to clipboard
How to remove arrow in the tooltip ?
I don't want the arrow in the tooltip. Can you please let me know how to remove the arrow in the tooltip ? Any help on this issue is really appreciated. Thanks in advance.
Can override the style:
.rc-tooltip-arrow { display: none; }
<span data-tip="test" data-class="tool-tip"></span>
.tool-tip::before {
border-right: none !important;
}