how to set formatting of all textbox in asp.net website with css, without set cssclass property of each textbox -
i working on asp.net web site. want set font, color , background color of textbox in website. want css.
but dont want assign "cssclass" property of each textbox.
and textbox want set formatting in requiredfieldvalidator.
is possible set globally in asp.net css
just add in css file
input[type=text] { background-color:black; font-family:callibri; color:white; }
this style applied on every textbox
Comments
Post a Comment