0

Neither

option {
    padding: 10px;
}

nor

option {
    height: 30px;
}

nor

option {
    line-height: 30px;
}

works. Can that be real at the end of 2015? If it really does not work however, how can I do that with VanillaJS ?

Kinlan
  • 16,315
  • 5
  • 56
  • 88
  • 2
    Unfortunately Chrome does not support the styling of `option` tags yet! (Except for background and font colors) You can do some clever stuff with `ul li` tags though. http://stackoverflow.com/questions/22681141/select-option-padding-not-working-in-chrome – Aaron Nov 26 '15 at 12:58

1 Answers1

0

Nope, sorry. Whilst you can style the <select> element, you can't style <option> elements in Chrome (other than a few properties on the font - note currently you can't style the weight either)

Kinlan
  • 16,315
  • 5
  • 56
  • 88