mac input shadow

Solutions on MaxInterview for mac input shadow by the best coders in the world

showing results for - "mac input shadow"
Nele
20 Oct 2020
1input[type=text] {   
2    /* Remove First */
3    -webkit-appearance: none;
4    -moz-appearance: none;
5    appearance: none;
6
7    /* Then Style */
8    border-radius: 15px;
9    border: 1px dashed #BBB;
10    padding: 10px;
11    line-height: 20px;
12    text-align: center;
13    background: transparent;
14    outline: none;    
15}