ASP.NET Style 属性

定义和用法

Style 属性用于向控件设置或返回内联的 CSS 样式。

语法

  1. <asp:webcontrol id="id" Style="style" runat="server" />
描述
style 字符串,该值是为内联样式表规定的 CSS 样式。

实例

本例设置按钮控件的 CSS 样式:

  1. <form runat="server">
  2. <asp:Button id="Button" Text="Submit" runat="server"
  3. Style="font: 12pt Verdana;font-weight:700;color:orange;" />
  4. </form>