如何设置asp:image的工具提示的样式

时间:2017-09-25 06:38:35

标签: c# html

我打算在asp:Image的ToolTip属性上应用一个css,但它不起作用。这是我到目前为止所尝试过的。

      <asp:Image ID="sampleimage" runat="server" 
      ImageUrl="~/Image/questionmark.png" ToolTip='<%# Eval("NAME") %>' 
      CssClass="tooltips" />

      ^ the text on tooltip shows but the css is not. It only has a white 
      background color.

      .tooltips
      {
      background-color: Green;
      width:150px;
      height:20px;
      }

这是来自其他文件夹的样式表。

我对使用CSS完全陌生。任何形式的指示都会有所帮助。谢谢

1 个答案:

答案 0 :(得分:0)

您不能仅使用CSS设置工具提示的样式,因为它们是由浏览器呈现的,而不是您的网页。

但是您可以使用JS库来呈现自定义工具提示(允许自定义样式)。 我喜欢使用qTip2