更改 Bootstrap 组合框中的插入符位置
Change the Caret position in Bootstrap Combobox
如何在点击时更改多个 bootstrap 组合框中的插入符位置?我只想在组合框列表处于活动状态时使插入符号向上。
来自这个网站:
https://github.com/danielfarrell/bootstrap-combobox/
没问题...添加这个 CSS:
.dropdown-menu[style*="block"] + .input-group-addon.dropdown-toggle > .caret{
border-bottom: 4px solid !important;
border-top: none !important;
}
当列表处于活动状态时,它会指向上方。
如何在点击时更改多个 bootstrap 组合框中的插入符位置?我只想在组合框列表处于活动状态时使插入符号向上。
来自这个网站: https://github.com/danielfarrell/bootstrap-combobox/
没问题...添加这个 CSS:
.dropdown-menu[style*="block"] + .input-group-addon.dropdown-toggle > .caret{
border-bottom: 4px solid !important;
border-top: none !important;
}
当列表处于活动状态时,它会指向上方。