0
asp:ImageのToolTip属性にCSSを適用する予定ですが、機能しません。これはこれまで私が試したことです。aspのツールチップをスタイルする方法:画像
<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を使用しています。任意の形式の指示が役立ちます。
[this](https://forums.asp.net/t/1198710.aspx?Giving+Styles+to+Tooltip)を参照してください。 –