css input type tex code example
Example 1: css set styles for input text
input[type="text"] { font-size: 0.9em; padding-top: 0.35rem;}
Example 2: style input by type
/* Style input based on type */
input[type=text]
{
}
input[type="text"] { font-size: 0.9em; padding-top: 0.35rem;}
/* Style input based on type */
input[type=text]
{
}