2

I want to increase the height of Bootstrap select dropdown options. Is it possible to set a custom height for the option element?

enter image description here

My HTML code,

<div class="container">
  <div class="row">
    <div class="form-group">
      <label>Color</label> 
      <select class="form-control">
          <option value="r">Red</option>
          <option value="b">Blue</option>
          <option value="g">Green</option>
      </select>
    </div>
  </div>
</div>
SAP
  • 468
  • 2
  • 14
  • Possible duplicate of [How to style the option of a html "select"?](http://stackoverflow.com/questions/7208786/how-to-style-the-option-of-a-html-select) – Raviteja Mar 08 '17 at 04:59

1 Answers1

0

I found an answer for my requirement and hope this could help to others. This plugin allows defining the height for the select options.

SAP
  • 468
  • 2
  • 14