复制代码代码如下: <select> <option>Here is the first option</option> <option>The second option</option> </select>
一个选择框的某些部分我们是可以美化的,比如字体、边框、颜色、内边距和背景颜色: Here is the first option The second option 但是烦人的下拉箭头还是保持不变。没有直接美化它的方式,但解决方案还是非常简单的,首先我们需要用一个div容器包裹在select元素外围:
复制代码代码如下: <div class="styled-select"> <select> <option>Here is the first option</option> <option>The second option</option> </select> </div>