У меня есть это приложение в R
.
Как добавить всплывающую подсказку при наведении курсора на значок? Например:
![enter image description here](https://i.stack.imgur.com/c0PNJ.png)
Класс значков .fa-question-circle
. Я пытался:
HTML:
<a href="#" class=".fa-question-circle" data-tooltip="My text is a text">Text</a>
CSS:
.fa-question-circle
{
position:relative;
}
.fa-question-circle:after
{
background-color:rgba(0, 0, 0, .6);
color: white;
box-sizing:border-box;
content: attr(data-tooltip);
display:none;
padding:5px;
position:absolute;
right: -105px;
bottom: -55px;
z-index:3;
box-shadow: 0 0 3px #000;
border-radius: 0px 10px 10px 10px;
}
.fa-question-circle:hover:after {
display:block;
}
Но не работает. Спасибо.