How to Use the File ".css" in the CSSClass property field

  • Thread starter Thread starter Ric Pullen
  • Start date Start date
R

Ric Pullen

Can any one tell me how to set the CssClass to automatically get the style
from the css file.

I know i can define the style in the header section and then use the
CssClass property, but i want this throughout my forms for a set of
specific labels.

Many Thanks
 
You just link to the stylesheet! Like shown below


<head>
<LINK href="Styles.css" type="text/css" rel="stylesheet">
</head>
 
Back
Top