0

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..?

  • That's the similare question, see answer at : http://stackoverflow.com/questions/1120879/css-checkbox-input-styling – Ema.H Aug 22 '13 at 13:14

2 Answers2

4

Use an attribute selector

[type=checkbox] {
    /* some rules */
}
Quentin
  • 914,110
  • 126
  • 1,211
  • 1,335
0
$("#checkboxid").css({'height':'12px;'width':'12px;etc});

reference css

Rituraj ratan
  • 10,260
  • 8
  • 34
  • 55