只有当我删除链接时,我才能看到带有工具提示的 div 标签。这两者有何关系? div 内容未与链接一起出现。
.tooltip {
position: relative;
display: inline-block;
border-bottom: 1px dotted black;
}
.tooltip .tooltiptext {
visibility: hidden;
width: 120px;
background-color: black;
color: #fff;
border-radius: 6px;
}
.tooltip:hover .tooltiptext {
visibility: visible;
}
div#tdemo1 {
animation-name: animate;
animation-duration: 3s;
width: 100px;
height: 100px;
background-color: red;
}
@keyframes animate {
0% {
background-color: red;
}
33% {
background-color: yellow;
}
66% {
background-color: blue;
}
99% {
background-color: white;
}
}
Hover over me Tooltip texttypes of buttons in bootstrap:
我尝试使用带有 div 标签的工具提示并使用 bootstrap 显示按钮。一次只有其中之一出现正确。
Copyright 2014-2026 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号