选择框背景图像

时间:2012-01-28 17:05:00

标签: html css

  

可能重复:
  Background Image for Select (dropdown) does not work in Chrome

我需要将选择框背景图片更改为https://www.google.com/images/nav_logo101.png 我正在使用此代码:

<form>
    <select id='selectbox'>
        <option >A</option>
        <option >B</option>
    </select>
</form>

这可能听起来微不足道,但我尝试了各种各样的事情,不幸的是他们都失败了。任何帮助都会受到赞赏

固定:我用它来修复它:

select#selectbox { -webkit-appearance: none; }

1 个答案:

答案 0 :(得分:4)

看这里http://jsfiddle.net/8FydL/

form select#selectbox {
    width: 100px;
    height: 50px;
    background-image: url('https://www.google.com/images/nav_logo101.png');
}