<div tooltip=“123”></div>
.tag::before{
content: attr(tooltip);
position: absolute;
opacity: 0;
transition: all 0.1s ease;
padding: 10px;
color: #333;
border-radius: 2px;
box-shadow: 2px 2px 2px #eee;
}
.tag:hover:before {
opacity: 1;
background: #eee;
margin-top: -35px;
margin-left: 20px;
}