Bootstrap 3选择更改展开图标

时间:2014-01-08 11:28:26

标签: css html5 css3 twitter-bootstrap twitter-bootstrap-3

有谁能告诉我如何在bootstrap3选择中更改展开图标? 我希望得到类似于第二个选择而不是标准扩展图标的东西 enter image description here

我知道这样的现成解决方案:Bootstrap-select

但是我无法使用它,因为它们正在弄乱我的布局。

1 个答案:

答案 0 :(得分:1)

您可以将appearance:none;添加到select class并添加自定义背景。

select {
/*other styles if any*/
display: inline-block;
-webkit-appearance:none;
-moz-appearance:none;
appearance:none;
border:solid 1px #CCC;
background: url("path/to/arrow.png") center right;
}