select input field css

Solutions on MaxInterview for select input field css by the best coders in the world

showing results for - "select input field css"
Emma
16 Mar 2017
1input[type=number]{
2  width: 2rem;
3  height: 2rem;
4}
5input[type=text]{
6  width: 10rem;
7  height: 3rem;
8}
9input[type=password]{
10  border: 1px solid #ff0000;
11}
12input[type=date]{
13  cursor: pointer;
14}