Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想要许多具有相同格式的水平规则。 我正在尝试使用 CssClass 并遇到错误:
<hr CssClass="hRules"/> // error: Attribute 'CssClass' is not a valid attribute of element 'hr'.
请问有什么解决办法?
不能简单的使用class属性吗?
<hr class="hRules" />
在 Css 某处:
.hRules{ height:1px; color:#C7C7C7; }
对于普通的 HTML 控件,您必须使用该class属性。该CssClass属性用于asp 控件。您可能仍然可以将该CssClass属性用于您的hr控件,但您可能还必须将其设置runat="server"为
class
CssClass
hr
runat="server"