Closed kvetoslavnovak closed 9 months ago
Tooltips are often associated to links: how can you display such a kind of web element when on a tap event you are redirected to the target? Maybe Tooltips are not for Mobile screens?
Are you sure? I thought that html standards use the tooltip in connection with the HTML attribute <* title="…"> and hover event.
See Mozilla developer`s wiki for example https://wiki.mozilla.org/Template:Tooltip
Describe the issue
The inline element tooltip example does not work on mobile at all.
I believe this may be quite easy to achieve only with css, no javascript needed. E.g. see this classic example https://www.w3schools.com/css/css_tooltip.asp using
.tooltip:hover .tooltiptext { visibility: visible; }