我尝试在html文件中设置“工具提示”的样式。当我尝试在Web浏览器中加载文件时,样式(宽度,高度,悬停消息的背景颜色等)起作用了。但是,当我在WPF WebBrowser控件中加载相同的文件时,它不起作用。
代码:
<html>
<style>
.tooltip {
position: relative;
display: inline-block;
border-bottom: 1px dotted black;
}
.tooltip .tooltiptext {
visibility: hidden;
width: 120px;
background-color: black;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px 0;
/* Position the tooltip */
position: absolute;
z-index: 1;
}
.tooltip:hover .tooltiptext {
visibility: visible;
}
</style>
<body>
<div class="tooltip">Hover over me
<span class="tooltiptext">Tooltip text</span>
</div>
</body>
</html>