ASP.NET Style 属性
定义和用法
Style 属性用于向控件设置或返回内联的 CSS 样式。
语法
<asp:webcontrol id="id" Style="style"
runat="server" />
值 | 描述 |
---|---|
style | 字符串,该值是为内联样式表规定的 CSS 样式。 |
实例
本例设置按钮控件的 CSS 样式:
<form runat="server">
<asp:Button id="Button" Text="Submit" runat="server"
Style="font: 12pt Verdana;font-weight:700;color:orange;"
/>
</form>
实例
- 使用 style 属性向 button 控件添加样式