我在此有3个<代码><input>。
Name: <input><br>
Age: <input type="number"><br>
Site: <input type="url">
我可以选择与这些特别安全局的底线二:
input[type="number"]{
color: gray;
}
input[type="url"]{
color: blue;
}
But I don t know how to select the first one that has no type.
I tried:
input{
color: red;
}
但它也将改变另外两个。
input[type=""]{
color: red;
}
This is still not working.
Any idea?