I am having trouble styling some textboxes in my project. While everything looks good in design view, the CSS doesn't seem to be applied when I debug.
Here is the CSS code:
input.textbox {
color: #C0C0C0;
text-align: center;
}
And this is how I have set it up in my markup:
<asp:TextBox ID="txtFirstName" runat="server" CssClass="textbox" MaxLength="50" Text="First Name"></asp:TextBox>
Any help on this issue would be greatly appreciated. Thank you!