how to change the text color of file chosen in asp:fileUpload in Safari?
I have made web application using C# and used asp:fileUpload
for that.
But when I published it and run in Safari in MAC, it shows chosen file name for upload in black color which开发者_运维知识库 is not properly readable.
How can I change that text color to white?
You can use the following CSS:
input[type=file]
{
color: white;
}
(tested in Safari 5)
First Check out this demo page in safari, it is from second url.......
http://www.appelsiini.net/projects/filestyle/demo.html
I think you find enough things from below sites.
- http://www.quirksmode.org/dom/inputfile.html
- http://www.appelsiini.net/projects/filestyle
精彩评论