I want add some css on input checkbox for all browsers (chrome, firefox, ie - 6 7 8) if jquery is the last option please do let me know and must supporting for all browsers
can anyone help how can i do that..?
I want add some css on input checkbox for all browsers (chrome, firefox, ie - 6 7 8) if jquery is the last option please do let me know and must supporting for all browsers
can anyone help how can i do that..?
Use an attribute selector
[type=checkbox] {
/* some rules */
}
$("#checkboxid").css({'height':'12px;'width':'12px;etc});
reference css