I am working with [Style] class in this way:
public class ServerControl1 : System.Web.UI.Control
{
....
protected override void OnPreRender(EventArgs e)
{
Style wrapperStyle = new Style();
wrapperStyle.BorderColor = BorderColor;
....
....
this.Page.Header.StyleSheet.CreateStyleRule(wrapperStyle, null, key);
.....
}
}
How can I add such things as [line-height] or other?