I have a problem with applying css on textboxes in asp.net!!
Here is my textbox:
<asp:TextBox ID="TextBox1" CssClass="textbox" runat="server" Height="22px" Width="128px"
BackColor="#CCCCCC"></asp:TextBox>
As u see I added CssClass to the textbox. Here is the css i am using
.textbox
{
background-color: Red;
font-weight: bold;
}
What is the problem? I googled, but can't find the answer!!