Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图将 2 张图片放在下拉框的选项标签中。一张图片适用于背景图片属性。所以我尝试了以下代码,但它不起作用。做这个的最好方式是什么?
<select> <option> <img src="fist.jpg" height="10" width="10"/> <img src="second.jpg" height="10" width="10"/> </option> </select>
您不能将图像放在选项标签中。
根据您要执行的操作,您可以在 CSS3 中使用多个背景图像。
background-image: url(first.jpg), url(second.jpg);