我试图将2张图片放入下拉框的选项标签中。 一个图像与背景图像属性一起使用。 所以我尝试了以下代码,但它无法正常工作。 做这个的最好方式是什么?
<select>
<option>
<img src="fist.jpg" height="10" width="10"/>
<img src="second.jpg" height="10" width="10"/>
</option>
</select>
答案 0 :(得分:0)
You can't put images in an option tag.
根据您要执行的操作,您可以在CSS3中使用多个背景图像。
background-image: url(first.jpg), url(second.jpg);