我在 asp.net 中的文本框上应用 css 时遇到问题!
这是我的文本框:
<asp:TextBox ID="TextBox1" CssClass="textbox" runat="server" Height="22px" Width="128px"
BackColor="#CCCCCC"></asp:TextBox>
如您所见,我将 CssClass 添加到文本框中。这是我正在使用的 CSS
.textbox
{
background-color: Red;
font-weight: bold;
}
问题是什么?我用谷歌搜索,但找不到答案!