我正在尝试将引导程序的默认文本框颜色白色设置为灰色,如下所示:
textarea{
color:gray;
}
但那不起作用。
谢谢
我这样打扰了:
textarea{
background-color:gray;
}
这就是一个文本框:
<form class="form-horizontal">
<div class="form-group">
@Html.LabelFor(m => m.UserName, new { @class = "control-label col-xs-2" })
@Html.TextBoxFor(m => m.UserName, new { @class = "form-control", style = "width: 250px;" })
</div>
</form>
但是texbox保持白色。
答案 0 :(得分:3)
使用此
textarea{
background-color:gray !important;
}
对于文本框
input[type="text"]{
background-color:gray !important
}
答案 1 :(得分:1)
您需要使用background-color
代替:
textarea{
background-color:gray;
}