Currently, I have a traditional select dropdown that is 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>
My goal is to transform the dropdown options into horizontal images rather than vertical text. Here is what I envision:
SELECT BUTTON
work image - home image - practical image
I have experimented with using display: inline-blocks, floats, and even contemplated using radio buttons based on a related Stack Overflow question. As I am in the process of learning Angular, I would prefer to avoid the use of JQuery. Thank you for your help.