hide_inputfile_ie8.md

April 19, 2017 ยท View on GitHub

How to hide input[file] in IE8 Back

input[type="file"] {
    opacity: 0;
    
    /** IE8 supported */
    filter: alpha(opacity=0);
}