ASP.NET CssClass Property


Style Control Reference Complete Style Control Reference

Definition and Usage

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

Syntax

<asp:webcontrol id="id" CssClass="style" runat="server" />

Attribute Description
style A String specifying the CSS class used on the control


Example

The following example sets the CSS style to a 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>

Show example »

Style Control Reference Complete Style Control Reference

Color Picker

colorpicker