Seeking advice on enhancing the appearance of a dropdown menu in an ASP.NET core app using Bootstrap CSS. Suggestions for improving spacing and text aesthetics would be appreciated. Thank you, Peter
https://i.sstatic.net/HA5dZ.png
Below is the code snippet from my cshtml file:
<div class="container">
<div id='dropdown' style="width:40%">
@Html.DropDownList("drop", (MultiSelectList)ViewBag.Categories, "Select"))
</div>
<div id='calendar' style="width:65%" />
</div>