0

I have small image in my project and want to display it in select option.

<select>
  <option>random text</option>  -->There should be also an image
</select>
georgeawg
  • 48,608
  • 13
  • 72
  • 95
kaktusx22
  • 59
  • 1
  • 1
  • 8

1 Answers1

2

The only permitted contents for an <option> element is text.

Content categories: None.
Permitted content:  Text, possibly with escaped characters (like &eacute;).
Tag omission:       The start tag is mandatory. The end tag is optional if this element is immediately followed by another <option> element or an <optgroup>, or if 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

georgeawg
  • 48,608
  • 13
  • 72
  • 95