style input border code example
Example 1: add border to input css
border: none;
border-bottom: 1px solid blue;
Example 2: style input by type
/* Style input based on type */
input[type=text]
{
}
border: none;
border-bottom: 1px solid blue;
/* Style input based on type */
input[type=text]
{
}