Css for textbox

css, css-selectors

Solution

Use an attribute selector:

input[type="text"]
{
  /* ... */
}

Problem

How can I do to add a css rule for all textbox ? I know that : ``` input{} ``` is for all the input but if I want especially the type="text" ?

Original source