CSS로 툴팁을 생성하기 위한 코드는 다음과 같습니다 -
예시
<!DOCTYPE html>
<html>
<style>
body {
text-align: center;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.tooltip {
position: relative;
display: inline-block;
border-bottom: 1px dotted black;
font-size: 20px;
font-weight: bolder;
color: blue;
}
.tooltip .toolText {
visibility: hidden;
width: 120px;
background-color: rgb(89, 166, 255);
color: #fff;
text-align: center;
border-radius: 6px;
padding: 10px 20px;
font-weight: normal;
position: absolute;
z-index: 1;
bottom: 125%;
left: 50%;
margin-left: -60px;
opacity: 0;
transition: opacity 0.3s;
}
.tooltip .toolText::after {
content: "";
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: #555 transparent transparent transparent;
}
.tooltip:hover .toolText {
visibility: visible;
opacity: 1;
}
</style>
<body>
<h1>Tooltip Example</h1>
<div class="tooltip">
Hover Here
<span class="toolText">Some Random Text</span>
</div>
<p>Hover over the above text to see tooltip in action</p>
</body>
</html> 출력
위의 코드는 다음과 같은 출력을 생성합니다 -

"Hover over me" 텍스트 위로 마우스를 가져갈 때 -
