Styling textbox of an HTML file input
I have an asp.net 2.0 web app where I use C#. I have an HTML file input control that I would like to style, but I can't seem to find a way to do it. I actually wanted to change the color of the textbox. I looked online but I couldn't find any proper solutions.
Can anyone help?
开发者_Go百科Thank you.
You could use CSS and redefine the elements or use a div tag.
- http://forums.devshed.com/css-help-116/how-to-define-css-styles-for-text-box-input-s-50111.html
- http://www.velocityreviews.com/forums/t118125-css-and-textbox.html
- You might use an ASP control and get access to properties that way. It has a class property you can define.
You can style the text color of the HTML file input like you can any other element. Works in FF and IE8:
#inputId { color: #ff0000; }
For more involved styling, you'll need to resort to workarounds, like this one.
精彩评论