选择按钮工作正常:
input[type="submit"] { background:#efefef; width:auto; padding:5px; color:#666; font-size:16px; font-weight:bold; padding:5px 15px; }
但我似乎无法为下拉框工作,这不起作用:
input[type="select"] { background:#000; }
我正确选择它吗?你能这样做吗?
解决方法
尝试这个:
select { background:#000; }
据我所知,没有< input type =“select”/>,只有< select>< / select>.