表工具提示css

时间:2012-10-11 07:54:07

标签: c# asp.net

我已经从页面后面的asp.net代码生成了一个动态表,并添加了 Table.ToolTip 值。如何添加table.tooltip样式?

tbl = new Table(); tbl.ID = "tblstatus";
tbl.Style.Add("border-collapse", "collapse"); 
tbl.ToolTip = "tool tip message";

1 个答案:

答案 0 :(得分:0)

ToolTip属性呈现为HTML title attribute。浏览器通常将其显示为工具提示,不支持样式。

如果您想要丰富的弹出式悬停内容,请查看qTip之类的内容。