本文介绍了在asp.net FileUpload控件的浏览按钮只应用css的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个像这样的FileUpload控件
I have a FileUpload Control like this
<asp:FileUpload ID="fileuploader" runat="server" />
现在我只想在浏览按钮部分应用css
Now I want to apply css only on the Browse button part
如何
推荐答案
用输入样式
c $ c> type =file需要一些工作,浏览器在尝试对其进行风格设置时不会有类似的行为。
Styling an input
tag with type="file"
requires a bit of work, browsers don't behave similarly when you try to style them unfortunately.
有以下几种方法:
- http://www.quirksmode.org/dom/inputfile.html
- http://www.appelsiini.net/projects/filestyle
这篇关于在asp.net FileUpload控件的浏览按钮只应用css的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!