JSFiddle - React, Tailwind, and code Playground
HTML
<div style="width:300px;z-index:1;height:50px;left:250px" >
<asp:Repeater ID="listOptions" runat="server" OnItemDataBound="listOptions_ItemDataBound" EnableViewState="true">
<HeaderTemplate>
<select id="listHolder" name="listHolder" size="8" style="width:400px;left:inherit;height:280px;delimiter:<%= ListDelimiter %>" title="<%= this.ListTitle %>" >
</HeaderTemplate>
<ItemTemplate>
<option style="padding:15px" value="<%# Eval("Value") %>" <%#((bool)Eval("Selected"))?"selected":"" %> detail="<%#Eval("Description") %>">
<asp:Literal ID="listOptionText" runat="server" Text=<%# String.IsNullOrEmpty(Eval("Text").ToString()) ? Eval("Value") : Eval("Text") %>></asp:Literal></option>
</ItemTemplate>
<FooterTemplate>
</select>
</FooterTemplate>
</asp:Repeater>
</div>