Adding style to file upload button in css

前端 未结 8 1979
不知归路
不知归路 2020-12-01 15:13

I have a text field and button with following css:

JS fiddle link : http://jsfiddle.net/Tdkre/

.submit {
      -moz-box-shadow:inset 0px 1px 0px 0px         


        
8条回答
  •  臣服心动
    2020-12-01 15:51

    You could also use jQuery, like this:

    
    
    

    And this jquery code

    $("#image").click(function(){
     $("#photosubmit").click();
    });
    

    Hopes this helps someone too!

提交回复
热议问题