Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bootstrap 4 select option to add image thumbnail not working

Bootstrap 4 select option to added image thumbnail not working, any solution for this?

Thanks

 <select class="form-control" id="exampleFormControlSelect1">
          <option><img src="/assets/images/platform/abs.png">ABS-01</option>
          <option>2</option>
          <option>3</option>
          <option>4</option>
          <option>5</option>
        </select>
like image 494
core114 Avatar asked Oct 26 '25 14:10

core114


1 Answers

You cannot add icons or images in select. But a plugin called bootstrap-select can help you.

The icons used for this plugin are directly loaded from the Glyphicons provided by bootstrap.

The Git Project can be found here: https://github.com/snapappointments/bootstrap-select

You can also find a live demo of the functionality in here: http://silviomoreto.github.io/bootstrap-select

like image 111
Kevin Avatar answered Oct 29 '25 05:10

Kevin