<div class="test">Di chuột qua đây
<span class="tooltiptext">Hello World!</span>
</div>
.test {
/* Vùng chứa chú giải*/
position: relative;
display: inline-block;
border-bottom: 1px dotted black;/* Nếu bạn muốn các dấu chấm dưới văn bản*/
}
/* Tạo kiểu cho văn bản trong chú giải */
.test .tooltiptext {
visibility: hidden;
width: 120px;
background-color: black;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px 0;
/* xác định vị trí của chú giải*/
position: absolute;
z-index: 1;
}
/* Hiển thị văn bản chú giải khi bạn di chuột qua vùng chứa chú giải*/
.test:hover .tooltiptext {
visibility: visible;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.