Latest web development tutorials

ASP.NET CssClass property

Web Control Standard Properties Reference Web Control Standard Properties Reference

Definition and Usage

CssClass property is used to set or return control CSS style class.

grammar

<asp:webcontrolid="id" CssClass="style"runat="server" />
属性 描述
style 字符串值,规定在控件上使用的 CSS 类。


Examples

The following example sets the CSS style to the button:

<style>
.TestStyle
{
font: 12pt verdana;
font-weight:700;
color:orange;
}
</style>

<form runat="server">
<asp:Button id="Button" CssClass="TestStyle"
Text="Submit" runat="server"/>
</form>

The demonstration >>

Web Control Standard Properties Reference Web Control Standard Properties Reference