将2个图像放入下拉选项中

时间:2013-08-13 11:14:53

标签: jquery html css

我试图将2张图片放入下拉框的选项标签中。 一个图像与背景图像属性一起使用。 所以我尝试了以下代码,但它无法正常工作。 做这个的最好方式是什么?

<select>
    <option>
       <img src="fist.jpg" height="10" width="10"/>
       <img src="second.jpg" height="10" width="10"/>
    </option>
</select>

1 个答案:

答案 0 :(得分:0)

You can't put images in an option tag.

根据您要执行的操作,您可以在CSS3中使用多个背景图像。

background-image: url(first.jpg), url(second.jpg);