HTML File upload field style

后端 未结 5 1855
旧时难觅i
旧时难觅i 2021-01-19 03:10

I am trying to create a file upload field that has a little bit of style to it, but I seem to be having problems finding examples of this. I know part of the reason is that

5条回答
  •  野的像风
    2021-01-19 03:57

    If what you mean is the text field for the file names, you can use the input[type=file] selector in the css files. For example :

    input[type=file] { background-color: red; }
    

    If what you mean is the file selection dialog box, I think it's browser/OS dependent and there's little (if any) you can do about it.

提交回复
热议问题