样式“ tooltip”不适用于WPF WebBrowser控件上加载的html文件

时间:2019-05-02 15:08:27

标签: c# html css wpf

我尝试在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>

0 个答案:

没有答案