如何更改文本框内文字的颜色...... 给了颜色属性,但它不起作用....
在下面提供我的代码和小提琴
http://jsfiddle.net/Zkdfq/1/embedded/result/
<form class="navbar-form pull-right">
<input class="span2" type="text" placeholder="Email">
<input class="span2" type="password" placeholder="Password">
<button type="submit" class="btn">Sign in</button>
</form>
答案 0 :(得分:0)
只需添加:
input[type="text"] {
color:red;
}
在bootstrap.css之后的某个地方覆盖它。占位符文本不会更改,但一旦输入文本,它将会改变。
或者,如果您只想让它影响导航栏:
.navbar-form input[type="text"] {
color:red;
}