当前位置 : 主页 > 网页制作 > css >

文本框的CSS

来源:互联网 收集:自由互联 发布时间:2021-06-13
如何为所有文本框添加css规则? 我知道 : input{} 是所有的输入,但如果我特别想要type =“text”? 使用 attribute selector: input[type="text"]{ /* ... */}
如何为所有文本框添加css规则?
我知道 :

input{}

是所有的输入,但如果我特别想要type =“text”?

使用 attribute selector:

input[type="text"]
{
  /* ... */
}
网友评论