答案 0 :(得分:21)
input[type="text"]
CSS选择器可以分解为;
input
;找到所有input
元素的元素。[type="text"]
;按type
属性为text
。由于选择框是<select>
元素而不是<input type="select" />
,因此您只需使用select
选择器,如下所示;
select {
/* blah blah blah*/
}
答案 1 :(得分:4)
select不是您示例中的输入类型,因此在定位select
答案 2 :(得分:2)
正如Fabrizio-Calderan所说,select没有type属性。但是,您可以使用data-property并根据此
见这里:Select elements by data attribute in CSS
为什么不使用类来设置它?
伪代码:
<select>
<option class="wise">
<option class="not-so-wise">
<option class="meh">
</select>
答案 3 :(得分:1)
select {
border:1px solid green;
}
select option {
font-weight:bold;
}
答案 4 :(得分:-5)
select