Tooltips

Ще се научиш как да правиш tooltip(подсказка)


Hover for the tooltip

I am tooltip
.tooltip {
position: relative;
}

.tooltip .tooltiptext {
visibility: hidden;
width: 120px;
background-color: #0094AA;
text-align: center;
border-radius: 6px;
padding: 5px 0;
position: absolute;
z-index: 1;
top: 150%;
left: 50%;
margin-left: -60px;
}

.tooltip .tooltiptext::after {
content: "";
position: absolute;
bottom: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: transparent transparent black transparent;
}

.tooltip:hover .tooltiptext {
visibility: visible;
}

Tooltip animation

Hover for the tooltip

I am animated tooltip
.tooltip {
position: relative;
}

.tooltip .tooltiptexta {
visibility: hidden;
width: 150px;
background-color: #0094aa;
text-align: center;
border-radius: 6px;
padding: 5px 0;
position: absolute;
z-index: 1;
bottom: 100%;
left: 50%;
margin-left: -60px;

opacity: 0;
transition: opacity 2s;
}

.tooltip:hover .tooltiptexta {
visibility: visible;
opacity: 1;
}