如何更改 Safari 中 asp:fileUpload 中选择的文件的文本颜色?

发布于 2024-12-03 11:34:50 字数 145 浏览 0 评论 0原文

我使用 C# 制作了 Web 应用程序,并为此使用了 asp:fileUpload

但是当我发布它并在 MAC 的 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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

南风起 2024-12-10 11:34:50

您可以使用以下CSS:(

input[type=file]
{
    color: white;
}

在Safari 5中测试)

You can use the following CSS:

input[type=file]
{
    color: white;
}

(tested in Safari 5)

谁与争疯 2024-12-10 11:34:50

首先在 safari 中查看这个演示页面,它来自第二个网址.......

http://www.appelsiini.net/projects/filestyle/demo.html

我认为您可以从以下网站找到足够的东西。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文