input file 美化

阅读更多

1.input file 美化的基本思想是 将 的样式 opacity: 0;也就是透明度为零。

 

2.本人推荐一种办法:


 这样之后点击

 

3.清除的占位。

.input-file {
    width: 0.1px; 
    height: 0.1px; 
    opacity: 0; 
    overflow: hidden; 
    position: absolute; 
    z-index: -1;
}

这样就连占位也没有,然后你就可以通过美化

你可能感兴趣的:(input,file,美化)