I'm using asp.net website and I need to apply css style to all text boxes and html Input with type text in one place. I hope to help me in this issue ..
You can do this with CSS:
[type=text] {
color:Red;
border: 1px solid black;
}
This will apply that style to any element that is an input of type text. This will also work with the ASP text box control because that renders out as an input with a type of text.