Hi All,
I'm trying to add the CssClass property on an <asp:Label> element. However the class that i've set up is not working
The .css file has the following code:
The html code has the following:
Can anyone see what i'm doing wrong here???
Thanks in advance,
Julie
I'm trying to add the CssClass property on an <asp:Label> element. However the class that i've set up is not working
The .css file has the following code:
Code:
label.header
{
background-color : Red;
font-family : MS Sans Serif;
font-size : 2px
}
The html code has the following:
Code:
<asp:Label
CssClass="header"
ID="Label1"
runat="server"
Text="Test 1">
</asp:Label>
Can anyone see what i'm doing wrong here???
Thanks in advance,
Julie