Below CSS can be used to apply to all TEXTBOX, RADIO BUTTON or CHECK BOX without giving class.
CODE to be implemented in style.css file:
input[type=text]
{
//Here will be property as per requirement.
}
input[type=radio]
{
//Here will be property as per requirement.
}
input[type=checkbox]
{
//Here will be property as per requirement.
}
Same way you can apply CSS to any input type.
CODE to be implemented in style.css file:
input[type=text]
{
//Here will be property as per requirement.
}
input[type=radio]
{
//Here will be property as per requirement.
}
input[type=checkbox]
{
//Here will be property as per requirement.
}
Same way you can apply CSS to any input type.
What will be common CSS for dropdown list?
ReplyDelete