I am trying to replicate this unique select style using bootstrap v5.3
After exploring the options provided by bootstrap,
I have not found any select component that allows details within the <options>
tag.
If it is not possible with bootstrap, I may need to design a custom select as the following attempt resulted in inline display:
<select>
<option>
Option 1 <br />
Created At: date...
</option>
</select>