为帖子中的单词添加 <abbr> 标签

我写了一个粗糙的用户样式表(CSS),以便在移动设备上查看工具提示。
它需要 Stylus 扩展(我在 Android 上使用支持扩展的 Firefox)。

这类功能本可以包含在插件中,但我实际上在所有网站上都使用它。

abbr[title]:hover {
    border: 2px solid white;
    color: #333;
    background: #FF6;
}
abbr[title]:hover:after {
    content: " (" attr(title) ")";
}
6 个赞