如何在CSS中设置表单输入的样式?

时间:2019-10-02 10:59:11

标签: html css

如何设置表单(文本)输入的样式? 我尝试过:

input type=[text] {
  color: white;

}

1 个答案:

答案 0 :(得分:0)

尝试使用此:

input[type="text"]
 {
 color: white;
}
相关问题