I am currently working on some form and trying to get more than one select option per line as it is on the screnshoot above: https://i.sstatic.net/LIwKy.png
Is it even possible to create something like this? I try to wrap select option in span, put them inline and some others methods but sadly none of them works correctly and items are still listed in block.
My code is simple right now:
<select class="form-control w-100 ml-2" id="godzina"> <option></option> <option>16:00</option> <option>16:30</option> <option>17:00</option> <option>17:30</option> </select> I am using Bootstrap 4. Is there any solution to made it this way, or I should use for example radio inputs?
//edit: Only one options is allowed to select.