how to change the size of an input box in css code example
Example 1: size for number html
input[type="number"] {
width:50px;
}
Example 2: style input by type
/* Style input based on type */
input[type=text]
{
}
input[type="number"] {
width:50px;
}
/* Style input based on type */
input[type=text]
{
}