html – 如何在Bootstrap选择中设置标题样式

我正在使用Bootstrap select(
https://silviomoreto.github.io/bootstrap-select/)作为我的下拉框.

<select id="dataBox" name="dataBox" title="Select data" class="selectpicker form-control"></select> 

但是,这里的问题是标题看起来与周围区域的输入框中的占位符略有不同(字体和颜色).如下图所示.无论如何格式化标题而不是占位符?

这是一个标题

《html – 如何在Bootstrap选择中设置标题样式》

这是一个占位符

《html – 如何在Bootstrap选择中设置标题样式》

最佳答案 Bootstrap-select非常棘手.这里的答案是这样做:

.bootstrap-select > .dropdown-toggle

, .bootstrap-select > .dropdown-toggle

:hover, .bootstrap-select > .dropdown-toggle

:focus, .bootstrap-select > .dropdown-toggle

:active { color: grey; }
点赞