0

如何更改文本框中文本的颜色......给出了颜色属性但它不起作用......

在下面提供我的代码和小提琴

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>
4

1 回答 1

0

只需添加:

input[type="text"] {
    color:red;
}

在 bootstrap.css 之后的某个地方覆盖它。占位符文本不会改变,但是一旦你输入文本就会改变。

或者,如果您只希望它影响导航栏:

.navbar-form input[type="text"] {
    color:red;
}
于 2013-02-05T01:39:13.820 回答