I am interested in creating my own customized select element.
Currently, the design of my select element is as follows:
https://i.sstatic.net/eQNXb.png
This is the code for how it is currently implemented:
<p>Title</p>
<form>
<input type="color" onchange="colorisPanneau(value);pageSuivante();" name="coloris_panneau" list="liste_color3" id="coloris_panneau" value="#C5B9A9" class="formc" style="height:24px;width:202px;">
<datalist id="liste_color3">
<option value="#FFFFFF">
<option value="#999999">
<option value="#000000">
<option value="#582810">
</datalist>
</form>
However, I would like to transform it into something similar to this:
https://i.sstatic.net/OhoJA.png
Is there a way I can achieve this?
What steps should I take to customize the interface of my combobox
?
Additionally, where can I find resources or documentation to help me with this customization process?
Thank you for your assistance!