This doesnt actually work. Here is what i have, in my CSS, there is an INPUT
{} section, then i also have a .noborder{} section. in the input, i declare
a certain type, so all my textboxes look the same. I then use the .noborder
class on my checkboxes, because the check boxes look a little dorky with the
extra border painted around them. Only thing is, the checkboxes STILL wind
up with the border as defined in input, even though they are overriden with
a specific class.
The textboxes and chkbxs are all [asp:textbox or [asp:checkbox. The reason
is, the CssClass property on the checkbox does not actually apply to the
ACTUAL checkbox. It applies rather to the combined control which ASP.NET
renders for a checkbox of a Checkbox and either a Literal control or a Label
(im not sure if its the Lit or Lbl).
"Hermit Dave" <> wrote in message
news:%...
> if you are using asp.net (assuming a. you have a cross posted and b posted
> in asp.net yet... ie yes)
> you use something called webcontrols. you can assign different styles to
> different webcontrols.. yes even if they are of the same type like a
> textbox
> control (which is rendered as input type = text
>
> --
>
> Regards,
>
> Hermit Dave
> (http://hdave.blogspot.com)
> "A Traveler" <hitchhikersguideto-> wrote in message
> news:#...
>> I know in a css file, i can declare a style which will apply to a given
> HTML
>> tag, specifically, i am looking at an INPUT tag. Is there any way in
>> which
> i
>> can create a style section which will apply to a specific *type* of
> input??
>> That is, a section which applies only to [input type=text] or only to
> [input
>> type=check] or whichever?
>>
>> Thanks in advance.
>>
>>
>
>