How can I target input fields of type \'text\' using CSS selectors?
With attribute selector we target input type text in CSS
input[type=text] { background:gold; font-size:15px; }