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
  • 857,932
  • 118
  • 1,152
  • 1,264
0
$("#checkboxid").css({'height':'12px;'width':'12px;etc});

reference css

Rituraj ratan
  • 9,947
  • 8
  • 33
  • 52