Comment écrire CSS pour le texte de type d'entrée

/* For Example, If we want to change css of "text" type
from <input> we do this:*/

input[type=text] {
    /* Your Code Here */ 
}
David Gomari