在firefox中显示html li元素的工具提示

时间:2010-08-02 13:36:50

标签: asp.net html

我想显示单个li元素的工具提示,因为我使用的是标题属性,但它只适用于IE而不是firefox和chrome我应该为这两个浏览器使用哪个属性

<ul class="steps">
                    <li class="" id="step1" runat="server" title="Element to Add / edit the Test">Step 1</li>
                    <li class="step2" id="step2" runat="server" title="Add Course Constituents">Step 2</li>
                </ul>

1 个答案:

答案 0 :(得分:0)

您使用的属性是正确的。此元素应该适合您,并且是HTML 4的一部分,可用于大多数元素。 W3C Reference。我在Firefox和Chrome上做了一个简单的测试,li上的title属性正在渲染为我的工具提示。