How to hide text field in Html File Upload

后端 未结 12 832
南旧
南旧 2020-12-01 06:50

I am wondering how to hide the text field portion of a standard html file upload tag

for example



        
12条回答
  •  执笔经年
    2020-12-01 07:17

    you can set it's content to empty string like this :

     
    

    and in your css file :

    .mycustominput:after{
        content:""!important;
    }
    

提交回复
热议问题