I have a classic select dropdown, data-bound with angular.
<select class="form-control" ng-model="category">
<option value="work">Work</option>
<option value="home">Home</option>
<option value="practical">Practical</option>
<option value="no">No category</option>
</select>
I would like these dropdown options to be horizontal images, instead of vertical text. Not this:
SELECT BUTTON
- work
- home
- practical
But this:
SELECT BUTTON
work image - home image - practical image
I've been playing with display: inline-blocks, floats (yikes) and even thinking about radio buttons considering this SO question. I'm trying to learn Angular so no JQuery please. Thank you