如何为所有文本框添加css规则? 我知道 : input{} 是所有的输入,但如果我特别想要type =“text”? 使用 attribute selector: input[type="text"]{ /* ... */}
我知道 :
input{}
是所有的输入,但如果我特别想要type =“text”?
使用 attribute selector:input[type="text"] { /* ... */ }
input{}
是所有的输入,但如果我特别想要type =“text”?
使用 attribute selector:input[type="text"] { /* ... */ }