Display Image In Select Option
I have small image in my project and want to display it in select option.
Solution 1:
The only permitted contents for an <option>
element is text.
Content categories: None.
Permitted content: Text, possibly with escaped characters (like é).
Tag omission: The start tag is mandatory. The end tag isoptionalif this element is immediately followed by another <option> element or an <optgroup>, orif the parent element has no more content.
Permitted parents: A <select>, an <optgroup> or a <datalist> element.
Permitted ARIA roles: None
DOM interface: HTMLOptionElement
For more information, see
Post a Comment for "Display Image In Select Option"