Vftdan · @vftdan
315 followers · 23563 posts · Server mastodon.ml

For years have I been struggling with non-functional tooltips (<abbr title>) in mobile browsers.

And I've fixed it with a simple global style:

```
[title]:hover::after {
display: inline;
position: absolute;
background: ;
color: black;
border: 1px solid black;
padding: 1px;
border-radius: 2px;
content: attr(title);
}
```

#mobile #firefox #html #css #ffd4c9 #Stylus

Last updated 2 years ago