link css styles to input text field code example
Example 1: form css
#form {
border: 1px solid black;
padding: 1.5%;
text-align: center;
}
Example 2: style input by type
/* Style input based on type */
input[type=text]
{
}
#form {
border: 1px solid black;
padding: 1.5%;
text-align: center;
}
/* Style input based on type */
input[type=text]
{
}