CSS selector for text input fields?

后端 未结 9 776
广开言路
广开言路 2020-12-07 07:46

How can I target input fields of type \'text\' using CSS selectors?

9条回答
  •  星月不相逢
    2020-12-07 08:17

    With attribute selector we target input type text in CSS

    input[type=text] {
    background:gold;
    font-size:15px;
     }
    

提交回复
热议问题