Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

mac input shadow

input[type=text] {   
    /* Remove First */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    /* Then Style */
    border-radius: 15px;
    border: 1px dashed #BBB;
    padding: 10px;
    line-height: 20px;
    text-align: center;
    background: transparent;
    outline: none;    
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #mac #input #shadow
ADD COMMENT
Topic
Name
9+3 =