如何更改颜色下拉列表选择器

时间:2014-10-06 11:56:54

标签: html css

enter image description here

如何更改颜色下拉选择器列表。

设计问题。

2 个答案:

答案 0 :(得分:0)

我认为它正在使用triangle你可以在css中更改边框颜色。或使用triangle生成三角形。我建议你先阅读this

答案 1 :(得分:0)

你可以用CSS来实现这一点,但你并没有从技术上改变箭头本身。

在这个例子中,我实际上隐藏了默认箭头并显示了我自己的箭头。

HTML:

<div class="styleSelect">
  <select class="units">
    <option value="Metres">Metres</option>
    <option value="Feet">Feet</option>
    <option value="Fathoms">Fathoms</option>
  </select>
</div>




.styleSelect select {
  background: transparent;
  width: 168px;
  padding: 5px;
  font-size: 16px;
  line-height: 1;
  border: 0;
  border-radius: 0;
  height: 34px;
  -webkit-appearance: none;
  color: #000;
}

.styleSelect {
  width: 140px;
  height: 34px;
  overflow: hidden;
  background: url("images/downArrow.png") no-repeat right #fff;
  border: 2px solid #000;
}