Adding style to file upload button in css

前端 未结 8 1980
不知归路
不知归路 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:46

    try this:

    In your css file put this on the end of file or somewhere else: input[type="file"]::-webkit-file-upload-button. This syntax is only for button style.

    If you put there only: input[type="file"] you can style the array where you have filename.

提交回复
热议问题