Hide the browse button on a input type=file

前端 未结 10 780
再見小時候
再見小時候 2020-12-11 14:33

Is there a way to hide the browse button and only leave the text box that works in all browsers?

I have tried setting the margins but they show up different in each

10条回答
  •  猫巷女王i
    2020-12-11 15:18

    the best way for it

    
     
    

    And you can style your "label" element

    #file { 
       display: none;
    }
    .file-trigger {
    /* your style */
    }
    

提交回复
热议问题