Can HTML Tags be Incorporated into Select Element Options?
The question arises: can HTML select element options incorporate HTML tags? To illustrate, consider the following code:
<select> <option value="one"><b>one is bold</b></option> <option value="two">two has some <span>
In this scenario, the desired outcome is for the options to render as HTML. However, it is crucial to note that this is not feasible.
Explanation:
The HTML specification clearly states that