For years have I been struggling with non-functional tooltips (<abbr title>) in mobile browsers.
And I've fixed it with a simple #Stylus global style:
```
[title]:hover::after {
display: inline;
position: absolute;
background: #ffd4c9;
color: black;
border: 1px solid black;
padding: 1px;
border-radius: 2px;
content: attr(title);
}
```
#mobile #firefox #html #css #ffd4c9 #Stylus