Is there a way to customize the appearance of Bootstrap tabs by replacing them with a dropdown select menu instead of the standard tab layout created with <ul>
and <li>
elements?
I am working with a relatively small area (such as col-3) where I need to display a large number of tabs (around 7-10), but the layout looks unappealing on smaller screens as it extends onto multiple rows.
I would prefer to use a select dropdown menu (potentially utilizing jQuery plugins for customization) that allows me to always select tabs from the dropdown list.
The solution must involve using <select>
as I want the currently selected tab to be visible at all times (unlike the standard Bootstrap dropdown which only shows available options without displaying the selected one).