1span[data-descr] {
2 position: relative;
3 text-decoration: underline;
4 color: #00F;
5 cursor: help;
6}
7
8span[data-descr]:hover::after,
9span[data-descr]:focus::after {
10 content: attr(data-descr);
11 position: absolute;
12 left: 0;
13 top: 24px;
14 min-width: 200px;
15 border: 1px #aaaaaa solid;
16 border-radius: 10px;
17 background-color: #ffffcc;
18 padding: 12px;
19 color: #000000;
20 font-size: 14px;
21 z-index: 1;
22}
1<p>Here we have some
2 <span tabindex="0" data-descr="collection of words and punctuation">text</span> with a few
3 <span tabindex="0" data-descr="small popups that appear when hovering">tooltips</span>.
4</p>
5