Can I use HTML tags in the options for select elements? [duplicate]

Solution 1:

No, you can't do this. <option> tags cannot contain any other tags.

Solution 2:

No, but this: Styling HTML Select may help you and there a lof of detail and votes here:

How to style a <select> dropdown with CSS only without JavaScript?

Solution 3:

No, you cannot.

What you would do if you wanted this is use something like a floating div and position and display it using Css to look like a select. Then using javascipt clicks allow users to select.

Something like this: Reinventing the dropdown